Created
November 19, 2014 05:16
-
-
Save oliverbenns/a8186a460250bc4bbc8f to your computer and use it in GitHub Desktop.
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
| return { | |
| restrict: 'A', | |
| template: '<div class="btn-confirm-wrapper">' + | |
| '<p class="btn-confirm-popover-message">{{ message }}</p>' + | |
| '<div class="btn-group btn-confirm-popover-btns">' + | |
| '<button type="button" class="btn btn-icon btn-small btn-important" data-ng-click-"visible = false"><i class="icon-cross"></i></button>' + | |
| '<button type="button" class="btn btn-icon btn-small btn-success" data-ng-click-"handler()"><i class="icon-tick"></i></button>' + | |
| '</div>' + | |
| '<div class="btn-group">' + | |
| '<div data-ng-transclude style="float: left"></div>' + | |
| '<button type="button" class="btn btn-muted" data-ng-click-"visible = false">Cancel</button>' + | |
| '</div>' + | |
| '</div>', | |
| transclude: true, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment