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
Controllers for Directives must be handled differently than normal controllers:
for a controller defined on a directive angular creates a empty object which is then passed as thisto the controller constructor; every directive defined on a tag then may add members to the passed in this.
The current (0.1) implementation does not handle this correctly (see discussion on on issue #28).
The text was updated successfully, but these errors were encountered:
Controllers for Directives must be handled differently than normal controllers:
for a controller defined on a directive angular creates a empty object which is then passed as
this
to the controller constructor; every directive defined on a tag then may add members to the passed inthis
.The current (0.1) implementation does not handle this correctly (see discussion on on issue #28).
The text was updated successfully, but these errors were encountered: