diff options
author | Trent Richardson <trentdrichardson@gmail.com> | 2014-11-17 10:57:57 -0500 |
---|---|---|
committer | Trent Richardson <trentdrichardson@gmail.com> | 2014-11-17 10:57:57 -0500 |
commit | 331c5aa116091e5044aafcb28a89923fe853b3d7 (patch) | |
tree | 4127715cea62f827e033c0db9ab1413b2e940b23 /dist/jquery-impromptu.js | |
parent | 00d3334f94708e268ba1be3482bb3cba0e7f8cda (diff) | |
download | jQuery-Impromptu-331c5aa116091e5044aafcb28a89923fe853b3d7.zip jQuery-Impromptu-331c5aa116091e5044aafcb28a89923fe853b3d7.tar.gz jQuery-Impromptu-331c5aa116091e5044aafcb28a89923fe853b3d7.tar.bz2 |
#47 adds implementation for callCallback for jQuery.prompt.close to src
Diffstat (limited to 'dist/jquery-impromptu.js')
-rw-r--r-- | dist/jquery-impromptu.js | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/dist/jquery-impromptu.js b/dist/jquery-impromptu.js index 26889fc..e6384af 100644 --- a/dist/jquery-impromptu.js +++ b/dist/jquery-impromptu.js @@ -1,6 +1,6 @@ -/*! jQuery-Impromptu - v5.3.0 - 2014-11-16
-* http://trentrichardson.com/Impromptu
-* Copyright (c) 2014 Trent Richardson; Licensed MIT */
+/*! jQuery-Impromptu - v5.3.1 - 2014-11-16 +* http://trentrichardson.com/Impromptu +* Copyright (c) 2014 Trent Richardson; Licensed MIT */ (function(root, factory) {
if (typeof define === 'function' && define.amd) {
define(['jquery'], factory);
@@ -702,8 +702,10 @@ imp.jqib.remove();
$(window).off('resize',imp.position);
-
- if(typeof callCallback === 'function') callCallback();
+
+ if(typeof callCallback === 'function'){
+ callCallback();
+ }
});
}
imp.currentStateName = "";
|