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 has been archived by the owner on Feb 22, 2018. It is now read-only.
classFooComponent {
staticvar $map = {
'bar':'='
};
FooComponent(Scope scope) {
expect(scope.bar, isNull);
scope.$watch(() => scope.bar, (value) {
if (value !=null) { // watcher will fire with a null the first time.// use the value.
}
});
}
}
The value should be available on the scope before the component is instantiated.
The text was updated successfully, but these errors were encountered:
Right now:
The value should be available on the scope before the component is instantiated.
The text was updated successfully, but these errors were encountered: