laggingreflex

Results 52 comments of laggingreflex

@DariusLLL Your slider doesn't use the native `` tag but some sort of a custom player, maybe that's what's not progressing the video while capturing

I haven't dealt much with server-side rendering (so I don't know how (or if) [other SSR approaches have solved this in some other way](https://www.google.com/search?q=server+side+rendering+window+is+not+defined)) but since things like these (`window`,...

I was getting the same error and I upgraded the dependencies (especially the css-loader and style-loader, as pointed out in #20 that it's related to css/import) in both isomorphic-webpack and...

Sorry it was actually downgrading the dependencies that helped, not upgrading. The error seems to be coming from here: https://github.com/webpack-contrib/style-loader/blob/master/addStyles.js#L14. ```js return /msie [6-9]\b/.test(self.navigator.userAgent.toLowerCase()); ``` Replacing `self` with `window` makes...

It should also support [implicit common vendor chunk](https://webpack.js.org/guides/code-splitting-libraries/#implicit-common-vendor-chunk) (where entry is not explicitly specified). And also when used with [`import()`](https://webpack.js.org/guides/code-splitting-import/)? (or is that not necessary in SSR?)

Ohh, it was because they were using the same `websocketPort` 8675.

This is still definitely a problem, causing #67

I've updated it to be a `--disable-rsync` cli arg and `disableRsync` as project config I've also update the `--no-delete` cli arg I added earlier to be `--disable-deletion` cli arg and...

I'm currently testing it out and having some issues. Don't merge it yet, I'll let you know when. Sorry for hasty commits.

I was forgetting about a particular callback which was causing the issue. Wrapping `triggerBigSync` in an `if` just like that was not a great idea: ``` if(..) { triggerBigSync(projectConf, {...