Open hbaccara opened 8 years ago
Tags such as: <my-directive/> are compiled to <my-directive> without the tag closing slash, which causes problems.
<my-directive/>
<my-directive>
same for me. it took me ages to find out it is the templateCache that causes my directives not to load. there is no info, warning or error... Workaround for now is simple:
<my-directive></my-directive>
Tags such as:
<my-directive/>
are compiled to<my-directive>
without the tag closing slash, which causes problems.