summaryrefslogtreecommitdiff
path: root/html/assets/js/utils/confirm.js
diff options
context:
space:
mode:
Diffstat (limited to 'html/assets/js/utils/confirm.js')
-rw-r--r--html/assets/js/utils/confirm.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/html/assets/js/utils/confirm.js b/html/assets/js/utils/confirm.js
new file mode 100644
index 0000000..ef59cbb
--- /dev/null
+++ b/html/assets/js/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