Skip to content

Commit 9d0d783

Browse files
committed
dist build
1 parent a2b8a29 commit 9d0d783

File tree

5 files changed

+16
-8
lines changed

5 files changed

+16
-8
lines changed

dist/js/tooltipster.bundle.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ var defaults = {
8989
hasTransitions: transitionSupport(),
9090
IE: false,
9191
// don't set manually, it will be updated by a build task after the manifest
92-
semVer: '4.2.4',
92+
semVer: '4.2.5',
9393
window: win
9494
},
9595
core = function() {
@@ -1505,7 +1505,11 @@ $.Tooltipster.prototype = {
15051505
// the opening animation, which is not great.
15061506
if (self.__state == 'disappearing') {
15071507

1508-
if (newClosingTime > self.__closingTime) {
1508+
if ( newClosingTime > self.__closingTime
1509+
// in case closing is actually overdue because the script
1510+
// execution was suspended. See #679
1511+
&& self.__options.animationDuration[1] > 0
1512+
) {
15091513
necessary = false;
15101514
}
15111515
}

dist/js/tooltipster.bundle.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js/tooltipster.main.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ var defaults = {
8989
hasTransitions: transitionSupport(),
9090
IE: false,
9191
// don't set manually, it will be updated by a build task after the manifest
92-
semVer: '4.2.4',
92+
semVer: '4.2.5',
9393
window: win
9494
},
9595
core = function() {
@@ -1505,7 +1505,11 @@ $.Tooltipster.prototype = {
15051505
// the opening animation, which is not great.
15061506
if (self.__state == 'disappearing') {
15071507

1508-
if (newClosingTime > self.__closingTime) {
1508+
if ( newClosingTime > self.__closingTime
1509+
// in case closing is actually overdue because the script
1510+
// execution was suspended. See #679
1511+
&& self.__options.animationDuration[1] > 0
1512+
) {
15091513
necessary = false;
15101514
}
15111515
}

dist/js/tooltipster.main.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@
4444
"scripts": {
4545
"test": "echo \"Error: no test specified\" && exit 1"
4646
},
47-
"version": "4.2.4"
47+
"version": "4.2.5"
4848
}

0 commit comments

Comments
 (0)