* fix link with data-app not work in tree content view.

This commit is contained in:
Catouse
2021-04-23 14:09:18 +08:00
parent 794f0f1b50
commit be8a73b171
2 changed files with 11 additions and 8 deletions
+4 -1
View File
@@ -155,7 +155,10 @@ $(function()
stopPropagation(e);
});
$itemContent.on('click', stopPropagation);
$itemContent.on('click', function(event)
{
if(!$(event.target).closest('a[data-app]').length) event.stopPropagation();
});
$taskTree.on('click', stopPropagation);
$(window).on('resize scroll', adjustSidePosition);
+7 -7
View File
File diff suppressed because one or more lines are too long