Enable tooltips after task move (js refactoring)

This commit is contained in:
Frederic Guillot 2016-03-24 21:53:47 -04:00
parent fa372b7b84
commit 13d5bd8e48
2 changed files with 6 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -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);
});
};
};