Skip to content

Commit

Permalink
dist build
Browse files Browse the repository at this point in the history
  • Loading branch information
louisameline committed Mar 4, 2017
1 parent 54eb69a commit 055d21b
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 18 deletions.
18 changes: 11 additions & 7 deletions dist/js/tooltipster.bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ var defaults = {
hasTransitions: transitionSupport(),
IE: false,
// don't set manually, it will be updated by a build task after the manifest
semVer: '4.2.1',
semVer: '4.2.2',
window: win
},
core = function() {
Expand Down Expand Up @@ -2498,12 +2498,16 @@ $.Tooltipster.prototype = {

if (!self.__destroyed) {

// no closing delay
self.option('animationDuration', 0)
// forced closing
._close(null, null, true)
// send event
._trigger('destroy');
if(self.__state != 'closed'){

// no closing delay
self.option('animationDuration', 0)
// force closing
._close(null, null, true);
}

// send event
self._trigger('destroy');

self.__destroyed = true;

Expand Down
4 changes: 2 additions & 2 deletions dist/js/tooltipster.bundle.min.js

Large diffs are not rendered by default.

18 changes: 11 additions & 7 deletions dist/js/tooltipster.main.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ var defaults = {
hasTransitions: transitionSupport(),
IE: false,
// don't set manually, it will be updated by a build task after the manifest
semVer: '4.2.1',
semVer: '4.2.2',
window: win
},
core = function() {
Expand Down Expand Up @@ -2498,12 +2498,16 @@ $.Tooltipster.prototype = {

if (!self.__destroyed) {

// no closing delay
self.option('animationDuration', 0)
// forced closing
._close(null, null, true)
// send event
._trigger('destroy');
if(self.__state != 'closed'){

// no closing delay
self.option('animationDuration', 0)
// force closing
._close(null, null, true);
}

// send event
self._trigger('destroy');

self.__destroyed = true;

Expand Down
2 changes: 1 addition & 1 deletion dist/js/tooltipster.main.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"version": "4.2.1"
"version": "4.2.2"
}

0 comments on commit 055d21b

Please sign in to comment.