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
Lets say we have a directive called my-dropdown which publish its current selection through a selected attribute. HTML minification breaks the binding.
<my-dropdown selected="controller.mySelection"></my-dropdown>
// is minified into
<my-dropdown selected></my-dropdown>
I hope this helps others who might be encountering the same kind of issue because this one had me pulling my hair off for a few hours before realizing that this was not my code but the minification :D
The text was updated successfully, but these errors were encountered:
Lets say we have a directive called
my-dropdown
which publish its current selection through aselected
attribute. HTML minification breaks the binding.I hope this helps others who might be encountering the same kind of issue because this one had me pulling my hair off for a few hours before realizing that this was not my code but the minification :D
The text was updated successfully, but these errors were encountered: