Browse Source

Gulped & new release version

Dante 10 years ago
parent
commit
92270ee589
5 changed files with 11 additions and 7 deletions
  1. 1 1
      bower.json
  2. 5 0
      changelog.txt
  3. 3 4
      dist/js/bootstrap-dialog.js
  4. 1 1
      dist/js/bootstrap-dialog.min.js
  5. 1 1
      package.json

+ 1 - 1
bower.json

@@ -1,7 +1,7 @@
 {
     "name": "bootstrap3-dialog",
     "description": "Make use of Bootstrap Modal more monkey-friendly. http://nakupanda.github.io/bootstrap3-dialog/",
-    "version": "1.34.7",
+    "version": "1.34.8",
     "keywords": [
         "css",
         "js",

+ 5 - 0
changelog.txt

@@ -1,8 +1,13 @@
 LASTEST NOT RELEASED
 ------------------------------
+NONE
+
+V1.34.8
+------------------------------
 * Set 'realized' status to false when closing a 'autodestroy' dialog. *
 * Merged #136 *
 * Refs #210 *
+* Merged #219 *
 
 V1.34.7
 ------------------------------

+ 3 - 4
dist/js/bootstrap-dialog.js

@@ -849,13 +849,12 @@
                 var dialog = event.data.dialog;
                 var $button = event.data.$button;
                 var button = $button.data('button');
-                if (typeof button.action === 'function') {
-                    button.action.call($button, dialog, event);
-                }
-
                 if (button.autospin) {
                     $button.toggleSpin(true);
                 }
+                if (typeof button.action === 'function') {
+                    button.action.call($button, dialog, event);
+                }
             });
 
             // Dynamically add extra functions to $button

File diff suppressed because it is too large
+ 1 - 1
dist/js/bootstrap-dialog.min.js


+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "bootstrap3-dialog",
-  "version": "1.34.7",
+  "version": "1.34.8",
   "description": "Make use of Bootstrap Modal more monkey-friendly.",
   "private": true,
   "directories": {