Bradley Baysinger
Bradley Baysinger
Ugh. My bad. I was passing a string. I'm thinking it should throw an exception from that...
My solution is noted above. Make sure you are not passing a string.
The example image provided gives an idea of one possible abnormality, but it seems like it might not be a deal breaker. I'm not seeing what browser that example is...
So, linking to a page with a js redirect (location.replace) does nothing, but it works if you put the redirect in a setTimeout call. And actually, upon to returning to...
I tried `itms://`, `itms-apps://`, `http://`, and `https://`. All of them froze the browser solid.
As I said, it does work if you link to a secondary page, and have `location.replace` within a `setTimeout` call. It even works if you pass 0 milliseconds. It may...
With the JPEG XR commented out, and formatTests set to 1, the asset pack will complete, but no, the game wont work, because the browser is set to not load...
System.hidden does not dispatch on window focus changes, only when minimized or switched to background tab. I believe we could make the behaviors consistent between HTML and Flash, maybe by...
I'm seeing one subscription to `router.events` yield three calls to the callback function, and each reports `instanceof event` as `ActivationEnd`. ``` console.log('This code runs only once, at site initialization.'); router.events.subscribe((event:...
Oh. I figured out my problem: https://stackoverflow.com/a/50808849/1253298 I should have been using NavigationEnd, not ActivationEnd.