Skip to content

Instantly share code, notes, and snippets.

@sbosell
Last active December 25, 2015 05:19
Show Gist options
  • Save sbosell/6923185 to your computer and use it in GitHub Desktop.
Save sbosell/6923185 to your computer and use it in GitHub Desktop.
Modal Template
<div class="modal-header">
<h3>Select your Sticker</h3>
</div>
<div class="modal-body">
<div ng-repeat="item in items">
<a ng-click="changeSticker(item)"><sticker animation='item' isanimated='false' speed='0'></sticker></a>
</div>
</div>
<div class="modal-footer">
<button class="btn btn-primary" ng-click="ok()">OK</button>
<button class="btn btn-warning" ng-click="cancel()">Cancel</button>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment