context menu on tab and "close all except for this tab"

This commit is contained in:
zadam
2019-05-07 21:34:01 +02:00
parent aef0e552a0
commit 4ea27e604f
3 changed files with 30 additions and 0 deletions

View File

@@ -2,6 +2,10 @@ const $contextMenuContainer = $("#context-menu-container");
let dateContextMenuOpenedMs = 0;
/**
* @param event - originating click event (used to get coordinates to display menu at position)
* @param {object} contextMenu - needs to have getContextMenuItems() and selectContextMenuItem(e, cmd)
*/
async function initContextMenu(event, contextMenu) {
event.stopPropagation();