diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-02-17 20:03:33 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-02-17 20:03:33 -0500 |
commit | 4ec507724f6028dfd949df9b547e714714ac990b (patch) | |
tree | 52d19d43e2c29c02c3afd76b44ceb8033c3b7490 /assets/js/src | |
parent | 2c68efac3ae754c0d8162bf59eb1be30e1188902 (diff) |
Fix popover issue with tooltips
Diffstat (limited to 'assets/js/src')
-rw-r--r-- | assets/js/src/board.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/assets/js/src/board.js b/assets/js/src/board.js index cd83fea3..05c4b90a 100644 --- a/assets/js/src/board.js +++ b/assets/js/src/board.js @@ -165,7 +165,7 @@ Kanboard.Board = (function() { tooltip.position(position); // Toggle subtasks status - $('#tooltip-subtasks a').click(function(e) { + $('#tooltip-subtasks a').not(".popover").click(function(e) { e.preventDefault(); e.stopPropagation(); |