You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 22, 2018. It is now read-only.
and it worked in IE and Safari. I'm assuming this is some sort of scoping issue or just checking for null in the right places. widget is defined where the <template> is placed in the new code. I guess dart2js outputted code that tried to evaluate the template on its own before it was included in the ng-include.
Now I have that template being repeated many times but at least the whole component doesn't die in IE and Safari.
The text was updated successfully, but these errors were encountered:
I had most of my component not load in only IE and Safari because of a
NoSuchMethodError
with the following code. I've tested this in IE 11 and Safari 7. You can see more info about the error at http://stackoverflow.com/questions/26482931/angulardart-1-0-0-has-issues-in-ie-11-and-safari-7-and-below.page
is an instance variable in my component. Here is my code from AngularDart0.14.0
that broke upon upgrading to1.0.0
:I had to rearrange it to be:
and it worked in IE and Safari. I'm assuming this is some sort of scoping issue or just checking for
null
in the right places.widget
is defined where the<template>
is placed in the new code. I guessdart2js
outputted code that tried to evaluate the template on its own before it was included in theng-include
.Now I have that template being repeated many times but at least the whole component doesn't die in IE and Safari.
The text was updated successfully, but these errors were encountered: