-
-
Notifications
You must be signed in to change notification settings - Fork 469
Closed
Labels
Description
If I load the following,
<div class="content">
<div class="grid-container" ui-view>
<!-- the main content appears here -->
</div>
</div>
then when I render the HTML I get (note the extra > in the inner div),
<div class="content">
<div class="grid-container" ui-view>> </div>
</div>
However, if I move the ui-view attribute before the class attribute or add a value to it, then it is rendered correctly.