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 Apr 12, 2024. It is now read-only.
If a the ng-bind-html value is bound to {{a.b}} and then b is deleted from a (either by the delete operator or by changing a) then the binding does not update correctly: http://jsfiddle.net/qYpcA/5/
From looking at the code the ng-bind-html is the only one that does not wrap the link function in a call to ngDirective.
The text was updated successfully, but these errors were encountered:
we don't use ngDirective there because we need to inject $sanitize service. the real problem was that we called html(content) if the content was truthy, which was a bug.
IgorMinar
added a commit
to IgorMinar/angular.js
that referenced
this issue
Apr 9, 2012
If a the ng-bind-html value is bound to {{a.b}} and then b is deleted from a (either by the delete operator or by changing a) then the binding does not update correctly: http://jsfiddle.net/qYpcA/5/
From looking at the code the ng-bind-html is the only one that does not wrap the link function in a call to ngDirective.
The text was updated successfully, but these errors were encountered: