diff options
Diffstat (limited to 'public/assets/js/_dependency-control/utils/confirm.js')
| -rw-r--r-- | public/assets/js/_dependency-control/utils/confirm.js | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/public/assets/js/_dependency-control/utils/confirm.js b/public/assets/js/_dependency-control/utils/confirm.js new file mode 100644 index 0000000..ef59cbb --- /dev/null +++ b/public/assets/js/_dependency-control/utils/confirm.js @@ -0,0 +1,27 @@ +define(function () {
+ return function (options, callback) {
+ var $dialog = $(options.template instanceof jQuery ? options.template.html() : options.template);
+ $dialog.hide();
+ $('body').append($dialog);
+ $dialog.parseAttributePlugins();
+
+ function close() {
+ $dialog.remove();
+ }
+
+ function open() {
+ $dialog.show();
+ }
+
+ open();
+ $dialog.find('.button.yes').click(function (e) {
+ e.preventDefault();
+ close();
+ callback();
+ });
+ $dialog.find('.button.no').click(function (e) {
+ e.preventDefault();
+ close();
+ });
+ };
+});
\ No newline at end of file |
