|
|
@@ -2,13 +2,13 @@
|
|
|
|
|
|
/* ================================================
|
|
|
* Make use of Bootstrap's modal more monkey-friendly.
|
|
|
- *
|
|
|
+ *
|
|
|
* For Bootstrap 3.
|
|
|
- *
|
|
|
+ *
|
|
|
* javanoob@hotmail.com
|
|
|
- *
|
|
|
+ *
|
|
|
* https://github.com/nakupanda/bootstrap3-dialog
|
|
|
- *
|
|
|
+ *
|
|
|
* Licensed under The MIT License.
|
|
|
* ================================================ */
|
|
|
(function(root, factory) {
|
|
|
@@ -74,6 +74,8 @@
|
|
|
BootstrapDialog.DEFAULT_TEXTS[BootstrapDialog.TYPE_SUCCESS] = 'Success';
|
|
|
BootstrapDialog.DEFAULT_TEXTS[BootstrapDialog.TYPE_WARNING] = 'Warning';
|
|
|
BootstrapDialog.DEFAULT_TEXTS[BootstrapDialog.TYPE_DANGER] = 'Danger';
|
|
|
+ BootstrapDialog.DEFAULT_TEXTS.ok = 'OK';
|
|
|
+ BootstrapDialog.DEFAULT_TEXTS.cancel = 'Cancel';
|
|
|
|
|
|
BootstrapDialog.SIZE_NORMAL = 'size-normal';
|
|
|
BootstrapDialog.SIZE_LARGE = 'size-large';
|
|
|
@@ -436,9 +438,9 @@
|
|
|
},
|
|
|
/**
|
|
|
* If there is id provided for a button option, it will be in dialog.indexedButtons list.
|
|
|
- *
|
|
|
+ *
|
|
|
* In that case you can use dialog.getButton(id) to find the button.
|
|
|
- *
|
|
|
+ *
|
|
|
* @param {type} id
|
|
|
* @returns {undefined}
|
|
|
*/
|
|
|
@@ -593,9 +595,9 @@
|
|
|
},
|
|
|
/**
|
|
|
* Dynamically add extra functions to $button
|
|
|
- *
|
|
|
+ *
|
|
|
* Using '$this' to reference 'this' is just for better readability.
|
|
|
- *
|
|
|
+ *
|
|
|
* @param {type} $button
|
|
|
* @returns {_L13.BootstrapDialog.prototype}
|
|
|
*/
|
|
|
@@ -667,7 +669,7 @@
|
|
|
},
|
|
|
/**
|
|
|
* Invoke this only after the dialog is realized.
|
|
|
- *
|
|
|
+ *
|
|
|
* @param {type} enable
|
|
|
* @returns {undefined}
|
|
|
*/
|
|
|
@@ -680,7 +682,7 @@
|
|
|
},
|
|
|
/**
|
|
|
* Invoke this only after the dialog is realized.
|
|
|
- *
|
|
|
+ *
|
|
|
* @returns {undefined}
|
|
|
*/
|
|
|
updateClosable: function() {
|
|
|
@@ -902,7 +904,7 @@
|
|
|
|
|
|
/**
|
|
|
* Shortcut function: show
|
|
|
- *
|
|
|
+ *
|
|
|
* @param {type} options
|
|
|
* @returns the created dialog instance
|
|
|
*/
|
|
|
@@ -912,7 +914,7 @@
|
|
|
|
|
|
/**
|
|
|
* Alert window
|
|
|
- *
|
|
|
+ *
|
|
|
* @returns the created dialog instance
|
|
|
*/
|
|
|
BootstrapDialog.alert = function() {
|
|
|
@@ -922,7 +924,7 @@
|
|
|
title: null,
|
|
|
message: null,
|
|
|
closable: true,
|
|
|
- buttonLabel: 'OK',
|
|
|
+ buttonLabel: Bootstrap.DEFAULT_TEXTS.ok,
|
|
|
callback: null
|
|
|
};
|
|
|
|
|
|
@@ -932,7 +934,7 @@
|
|
|
options = $.extend(true, defaultOptions, {
|
|
|
message: arguments[0],
|
|
|
closable: false,
|
|
|
- buttonLabel: 'OK',
|
|
|
+ buttonLabel: Bootstrap.DEFAULT_TEXTS.ok,
|
|
|
callback: typeof arguments[1] !== 'undefined' ? arguments[1] : null
|
|
|
});
|
|
|
}
|
|
|
@@ -961,7 +963,7 @@
|
|
|
|
|
|
/**
|
|
|
* Confirm window
|
|
|
- *
|
|
|
+ *
|
|
|
* @param {type} message
|
|
|
* @param {type} callback
|
|
|
* @returns the created dialog instance
|
|
|
@@ -975,13 +977,13 @@
|
|
|
'callback': callback
|
|
|
},
|
|
|
buttons: [{
|
|
|
- label: 'Cancel',
|
|
|
+ label: Bootstrap.DEFAULT_TEXTS.cancel,
|
|
|
action: function(dialog) {
|
|
|
typeof dialog.getData('callback') === 'function' && dialog.getData('callback')(false);
|
|
|
dialog.close();
|
|
|
}
|
|
|
}, {
|
|
|
- label: 'OK',
|
|
|
+ label: Bootstrap.DEFAULT_TEXTS.ok,
|
|
|
cssClass: 'btn-primary',
|
|
|
action: function(dialog) {
|
|
|
typeof dialog.getData('callback') === 'function' && dialog.getData('callback')(true);
|
|
|
@@ -993,7 +995,7 @@
|
|
|
|
|
|
/**
|
|
|
* Warning window
|
|
|
- *
|
|
|
+ *
|
|
|
* @param {type} message
|
|
|
* @returns the created dialog instance
|
|
|
*/
|
|
|
@@ -1006,7 +1008,7 @@
|
|
|
|
|
|
/**
|
|
|
* Danger window
|
|
|
- *
|
|
|
+ *
|
|
|
* @param {type} message
|
|
|
* @returns the created dialog instance
|
|
|
*/
|
|
|
@@ -1019,7 +1021,7 @@
|
|
|
|
|
|
/**
|
|
|
* Success window
|
|
|
- *
|
|
|
+ *
|
|
|
* @param {type} message
|
|
|
* @returns the created dialog instance
|
|
|
*/
|