Dan Nye
Dan Nye
Is there any update on when a fix for this might land? I tried working around it by getting my top-level validator to return an object with keys containing the...
@workmanw Would you be OK to merge the PR behind this (#34)?
For the moment, I've worked around this by keeping track of the About window, but it would be nice to not have this extra code. Perhaps if multiple windows are...
@pgengler - I had some success rolling my own from a combination of the internal `__triggerKeyEvent__` / `fireEvent` / `buildKeyboardEvent` functions. My needs were quite specific in that I didn't...
We're on Ember 2.14.1, have just installed ember-cli-google-analytics ^1.5.0 as per the installation instructions, and are seeing the same error. We're not using Cordova, it's just a plain Ember app...
One way around this, to detect IE only, is to use IE's conditional compiler comments. For more information, see http://msdn.microsoft.com/en-us/library/ie/121hztk3(v=vs.94).aspx Instead of testing for this: ``` javascript $.browser.msie && !supports_onhashchange...
I should probably add that this doesn't seem to happen with other decorators, e.g. `@service` doesn't seem to cause the same issue.
I've removed `istanbul`, as I realise it wasn't needed (was probably left in our project's `package.json` from yeas ago). I've also tried upgrading to `"ember-cli-code-coverage": "3.0.1"` but exactly the same...
Aaah - I think I've found a workaround. It looks like the `@tracked` decorator causes problems only when a default value has been specified. Compare the output from the same...
It's possible the issue only affects tracked properties with default values that are overridden in the constructor (or other method that the constructor calls). Certainly all the places I've seen...