Neuronaut

Results 8 comments of Neuronaut

You can also use the setting `stopTimerOnTabchange` to disable that behavior. What I did to still detect if the tab is visible or not is use the [Page Visibility API](https://developer.mozilla.org/en-US/docs/Web/API/Page_Visibility_API)...

I experienced the same issue after including the module in a nodejs app. I use it to convert quill delta to HTML. See memory usage in blue: ` nodejs 14.9.0...

I ended up closing this library and wrapping everything in a class (thereby only creating a JSDOM when needed) and calling ``` close() { this.cache = null; this.DOM.window.close(); // found...

Just experienced the same problem. And although I have wrapped the call to "urlMetadata" in a try-catch, it made the whole nodejs app shut down. Is there anything I can...

I have the same issue. After trying around all weekend I'm out of ideas. - `expo.scheme` apparently needs to be the same as `expo.android.package` to make google login work on...

I had the same issue, and got it to build by changing the order of the build phases. Move "Embed App Extensions" of the main target to be before "Unity...

I noticed something interesting: when I build the xcode project on Windows and then run it on my Mac, I'm getting the dependency cycle error and need to shift around...

@coreyward Thank you so much. I experienced strange problems with the plugin - your approach works much better. In your first snipped though, you forgot to add "ref={ref}" to the...