Enable tooltips after task move (js refactoring)
This commit is contained in:
parent
fa372b7b84
commit
13d5bd8e48
File diff suppressed because one or more lines are too long
|
|
@ -2,6 +2,10 @@ Kanboard.Tooltip = function(app) {
|
|||
this.app = app;
|
||||
};
|
||||
|
||||
Kanboard.Tooltip.prototype.onBoardRendered = function() {
|
||||
this.execute();
|
||||
};
|
||||
|
||||
Kanboard.Tooltip.prototype.execute = function() {
|
||||
$(".tooltip").tooltip({
|
||||
track: false,
|
||||
|
|
@ -68,4 +72,4 @@ Kanboard.Tooltip.prototype.execute = function() {
|
|||
}
|
||||
}, 100);
|
||||
});
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue