Created
February 4, 2014 19:56
-
-
Save tschieggm/8811121 to your computer and use it in GitHub Desktop.
angular idiosyncrasies
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- this breaks --> | |
<div> | |
<div class="row-fluid"> | |
<sd:directive ng-repeat="x in list" param="x" /> | |
<h1>Hello?</h1> | |
</div> | |
</div> | |
<!-- one working alternative --> | |
<div> | |
<div class="row-fluid"> | |
<sd:directive ng-repeat="x in list" param="x"></sd:directive> | |
<h1>Hello?</h1> | |
</div> | |
</div> | |
<!-- another alternative --> | |
<div> | |
<div class="row-fluid"> | |
<div ng-repeat="x in list"> | |
<sd:directive param="x" /> | |
</div> | |
<h1>Hello?</h1> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment