Created
July 27, 2012 16:33
-
-
Save simeonwillbanks/3189033 to your computer and use it in GitHub Desktop.
#JavaScript Ugly JS
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
| html = '<div id="modal-confirm-dialog" class="modal hide fade in">' + | |
| '<div class="modal-header">' + | |
| '<button type="button" class="close" data-dismiss="modal">×</button>' + | |
| '<h3>' + options.title + '</h3>' + | |
| '</div>' + | |
| '<div class="modal-body">' + | |
| '<p>' + options.message + '</p>' + | |
| '</div>' + | |
| '<div class="modal-footer">' + | |
| '<a class="btn btn-primary confirm">' + options.confirm_button_text + '</a>' + | |
| '<a class="btn" data-dismiss="modal">Cancel</a>' + | |
| '</div>' + | |
| '</div>'; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment