Jason

Results 35 comments of Jason

I'm guessing setTimeout doesn't work when the app is backgrounded?

Hi, I can see there's a Readme for v2 somewhere, but I'm unable to access it. Can you possibly make this public?

From what I can see, one of the main changes is that you've removed `purify`, but the docs still reference is. Will it still work with this new version?

Okay great. And the issue with `onChangeLocale` on `` has also been resolved? Was poking through the code for a reference to this but didn't see it.

Sorry for the confusion. It was this comment: https://forums.meteor.com/t/what-are-currently-the-most-optimal-i18n-tools/57865/6

Wouldn't simply adding these two lines at startup solve it? ``` document.addEventListener('resume', Meteor.reconnect()) document.addEventListener('freeze', Meteor.disconnect()) ```

Okay so `use_bearer_authorization` got me close. It led me to `GenericOAuth2ResourceOwner.php` where I saw this: ``` if ($this->options['use_bearer_authorization']) { $content = $this->httpRequest($this->normalizeUrl($this->options['infos_url'], $extraParameters), null, array('Authorization: Bearer '.$accessToken['access_token'])); } else {...

> Not using React (using native JS Quill), but issue in my case was in the fact that I had set > > ``` > max-height: 250px; > overflow: auto;...

Ditto, trying to figure this out as well, using the latest beta version. I've tried by setting `threads`: ``` docker run -d -p 5000:5000 python -m cog.server.http --threads=8 ``` But...