mirror of
https://github.com/maxpozdeev/mytinytodo.git
synced 2026-03-11 08:55:27 +00:00
* click with Cmd and Ctrl on tag in tagcloud will exclude the tag (like in tasklist)
This commit is contained in:
parent
73668d7a7e
commit
08306acd8d
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue