fixed bug in linux where oncontextmenu is fired before onrightclick.

This commit is contained in:
DESKTOP-GENO133\IvanPlex
2024-02-24 16:54:42 -07:00
parent b7b7d6ad3e
commit f20c04d523
10 changed files with 12 additions and 9 deletions

View File

@@ -663,6 +663,9 @@ function isRightClick(e) {
}
return false;
}
function stopEvent() {
event.stopPropagation();
}
function rangeMouseUp(e) {
if ($(".table-context-menu").length > 0) {
$(".table-context-menu").hide();