Skip to content

Instantly share code, notes, and snippets.

@patovala
Created October 9, 2014 01:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save patovala/5054ef8543d3dc14667c to your computer and use it in GitHub Desktop.
Save patovala/5054ef8543d3dc14667c to your computer and use it in GitHub Desktop.
<div class="modal" data-backdrop="false">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body">
<div ng-transclude></div>
</div>
</div>
</div>
</div>
<!----------this is on the state template side -->
<ni-popup><div class="mycontent"><p>this is the popup content</p></div></ni-popup>
<!----------this is the result rendered directive --->
<div class="modal" data-backdrop="false">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body">
<div class="mycontent"><p>this is the popup content</p></div>
</div>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment