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 20, 2018. It is now read-only.
I am unable to successfully use self closing tags
<div />
in HTML, because output HTML is corrupted. If I use<div></div>
instead, all works fine.Example:
This correct syntax:
<div class="cy-toggle-root">
<div class="toggle">
<div class="bar" />
<div class="button" />
</div>
<div ng-transclude class="content" />
</div>
Incorrectly becomes:
<div class="cy-toggle-root">
<div class="toggle">
<div class="bar" />
<div class="button" />
<div ng-transclude class="content" />
</div>
</div>
IF I change it to avoid self closing tags:
<div class="cy-toggle-root">
<div class="toggle">
<div class="bar"></div>
<div class="button"></div>
</div>
<div ng-transclude class="content"></div>
</div>
It works correctly
The text was updated successfully, but these errors were encountered: