Skip to content

Commit c3fb448

Browse files
committed
Fix tooltip closing by removing animation timer
1 parent 9f9f730 commit c3fb448

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/trolls_goals/public/js/crud_tooltip.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ angular.module('crudTooltip', [ 'ui.bootstrap.position' ])
255255
// need to wait for it to expire beforehand.
256256
// FIXME: this is a placeholder for a port of the transitions library.
257257
if ( scope.tt_animation ) {
258-
transitionTimeout = $timeout(removeTooltip, 500);
258+
transitionTimeout = $timeout(removeTooltip, 0);
259259
} else {
260260
removeTooltip();
261261
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rpwm-server",
3-
"version": "1.0.1-26",
3+
"version": "1.0.1-29",
44
"private": true,
55
"dependencies": {
66
"async": "latest",

0 commit comments

Comments
 (0)