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 Apr 12, 2024. It is now read-only.
I created directive, isolated scope has a bi-directional binding isOpen: '='. In html I didn't set is-open attribute, but do it in a click handler. In that case $compile:nonassign error is thrown.
Here the a simple plunk demonstrating the issue - plunk (error is in console)
For version 1.4.8 all works good - here the same plunk but for 1.4.8 version.
This can be fixed but making binding optional isOpen: '=?', but is this a bug in 1.4.9 or not?
The text was updated successfully, but these errors were encountered:
This seems like an intentional change made in 7bb2414 (with a relevant test added in 45c5688) to fix #13367 (which is about a regression that was introduced in 1.4.0-beta.3 as part of 6a38dbf).
I encountered this too when upgrading from 1.4.7 to 1.4.9 - that was actually the main reason I opened #13827.
While this is a regression, I think the proper fix is to indeed mark it with ? because this involves setting two watchers internally if there is a two way binding, and it doesn't make sense to do so if the attribute isn't set.
This issue breaks my 1.4.6 angular code. I can't go look at every single controller. I will just be putting a question mark after EVERY scope attribute just so I can move on without error.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I created directive, isolated scope has a bi-directional binding
isOpen: '='
. In html I didn't setis-open
attribute, but do it in a click handler. In that case $compile:nonassign error is thrown.Here the a simple plunk demonstrating the issue - plunk (error is in console)
For version 1.4.8 all works good - here the same plunk but for 1.4.8 version.
This can be fixed but making binding optional
isOpen: '=?'
, but is this a bug in 1.4.9 or not?The text was updated successfully, but these errors were encountered: