Remi Vledder

Results 19 comments of Remi Vledder

Updating autoprefixer-rails in https://github.com/vwochnik/jekyll-autoprefixer/blob/master/jekyll-autoprefixer.gemspec might solve the issue? source: https://stackoverflow.com/questions/51980353/autoprefixer-doesn-t-support-node-v0-10-37-error

I personally find the for loop confusing. Perhaps this will provide you with some clarity: ```js 'use-strict'; const http = require('http') const url1 = process.argv[2]; const url2 = process.argv[3]; const...

You can't. There is a value property but that is "A numeric value associated with the event (e.g. 42)" ([source](https://developers.google.com/analytics/devguides/collection/analyticsjs/events)) What would be an alternative is a [GA4 custom event](https://developers.google.com/analytics/devguides/collection/ga4/tag-guide#custom_events)....

@paymog It seems that custom events will not show up in the default reports: > "Custom events are collected in the same way as automatic and suggested events. However, since...

So for react-ga to support GA4 custom events it would need to support google tag manager. Before working on this, would like to gather a bit more information. Is it...

@theseanco Is the typo intentional? (`translte: 890%`)

Quite a while since this error was raised. Updated the CodeSandbox example to the latest version: https://codesandbox.io/s/react-testing-library-demo-gsxjr?fontsize=14&hidenavigation=1&theme=dark The error still exists.

Just to be clear, with "compound statement" you mean be chaining multiple [shorthand properties](https://developer.mozilla.org/en-US/docs/Web/CSS/Shorthand_properties) in one value? A single shorthand property ([Transition](https://www.w3.org/TR/css-transitions-1/#transition-property-property)): ```css /* transition: ; */ .shorthand { font-family:...

If the longhand value returned from the getComputedStyles does include multiple shorthand properties, and the list of shorthand properties is exhaustive. How about the following: What if we always compare...

By the way: There seems to be a strange result of the getComputedStyle in combination with the [CSS cubic-bezier()](https://developer.mozilla.org/en-US/docs/Web/CSS/easing-function) function. When using shorthand, getComputedStyle does not return the correct value....