Skip to content

Commit

Permalink
dist build
Browse files Browse the repository at this point in the history
  • Loading branch information
louisameline committed Apr 28, 2017
1 parent a2b8a29 commit 9d0d783
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
8 changes: 6 additions & 2 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.4',
semVer: '4.2.5',
window: win
},
core = function() {
Expand Down Expand Up @@ -1505,7 +1505,11 @@ $.Tooltipster.prototype = {
// the opening animation, which is not great.
if (self.__state == 'disappearing') {

if (newClosingTime > self.__closingTime) {
if ( newClosingTime > self.__closingTime
// in case closing is actually overdue because the script
// execution was suspended. See #679
&& self.__options.animationDuration[1] > 0
) {
necessary = false;
}
}
Expand Down
4 changes: 2 additions & 2 deletions dist/js/tooltipster.bundle.min.js

Large diffs are not rendered by default.

8 changes: 6 additions & 2 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.4',
semVer: '4.2.5',
window: win
},
core = function() {
Expand Down Expand Up @@ -1505,7 +1505,11 @@ $.Tooltipster.prototype = {
// the opening animation, which is not great.
if (self.__state == 'disappearing') {

if (newClosingTime > self.__closingTime) {
if ( newClosingTime > self.__closingTime
// in case closing is actually overdue because the script
// execution was suspended. See #679
&& self.__options.animationDuration[1] > 0
) {
necessary = false;
}
}
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.4"
"version": "4.2.5"
}

0 comments on commit 9d0d783

Please sign in to comment.