* click with Cmd and Ctrl on tag in tagcloud will exclude the tag (like in tasklist)

This commit is contained in:
Max Pozdeev 2020-08-28 17:43:46 +03:00
parent 73668d7a7e
commit 08306acd8d

View file

@ -214,7 +214,7 @@ var mytinytodo = window.mytinytodo = _mtt = {
});
$('#tagcloudcontent').on('click', '.tag', function(){
addFilterTag($(this).attr('tag'), $(this).attr('tagid'));
addFilterTag( $(this).attr('tag'), $(this).attr('tagid'), (event.metaKey || event.ctrlKey ? true : false) );
if(_mtt.menus.tagcloud) _mtt.menus.tagcloud.close();
return false;
});