Last active
December 25, 2015 05:19
-
-
Save sbosell/6923185 to your computer and use it in GitHub Desktop.
Modal Template
This file contains hidden or 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
<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