Closed josephschorr closed 10 years ago
Is that more if an issue with html-minifier
? Try it w/o it, and if it works, it's their fault :)
Yeah, it looks like it is an issue with collapseBooleanAttributes
. When set to false
, it solves the problem. Might be a good idea to add that as a warning in the README somewhere.
Closing the issue.
When compiling an HTML template with an element with bound attribute named "visible", the minifed code is producing:
<div class="my-directive" visible>
rather than the expected:
<div class="my-directive" visible="my_bound_expression">
This breaks any code that relies on that attribute's value.