From 3da6bc46fdf0451d5972df4a6543264634bdb3d8 Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Fri, 31 Dec 2021 00:47:41 +0000 Subject: [PATCH] Cannot select text in a table with a context menu available (#36363). Patch by Mizuki ISHIKAWA. git-svn-id: http://svn.redmine.org/redmine/trunk@21334 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- public/javascripts/context_menu.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/javascripts/context_menu.js b/public/javascripts/context_menu.js index 504c9cbc6..55d77bd77 100644 --- a/public/javascripts/context_menu.js +++ b/public/javascripts/context_menu.js @@ -46,6 +46,7 @@ function contextMenuClick(event) { } else { if (event.ctrlKey || event.metaKey) { contextMenuToggleSelection(tr); + contextMenuClearDocumentSelection(); } else if (event.shiftKey) { lastSelected = contextMenuLastSelected(); if (lastSelected.length) { @@ -53,6 +54,7 @@ function contextMenuClick(event) { $('.hascontextmenu').each(function(){ if (toggling || $(this).is(tr)) { contextMenuAddSelection($(this)); + contextMenuClearDocumentSelection(); } if ($(this).is(tr) || $(this).is(lastSelected)) { toggling = !toggling; @@ -191,7 +193,6 @@ function contextMenuToggleSelection(tr) { function contextMenuAddSelection(tr) { tr.addClass('context-menu-selection'); contextMenuCheckSelectionBox(tr, true); - contextMenuClearDocumentSelection(); } function contextMenuRemoveSelection(tr) {