From e395d3e46dd6caff12abd321f2aa044e05a33152 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Mon, 25 Aug 2008 15:24:23 +0000 Subject: [PATCH] Fixes context menu with Opera (#1655). git-svn-id: http://redmine.rubyforge.org/svn/trunk@1762 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- public/javascripts/context_menu.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/javascripts/context_menu.js b/public/javascripts/context_menu.js index 198c34d9a..20f0fc5a7 100644 --- a/public/javascripts/context_menu.js +++ b/public/javascripts/context_menu.js @@ -28,7 +28,7 @@ ContextMenu.prototype = { RightClick: function(e) { this.hideMenu(); // do not show the context menu on links - if (Event.findElement(e, 'a') != document && Event.findElement(e, 'a') != undefined) { return; } + if (Event.element(e).tagName == 'A') { return; } // right-click simulated by Alt+Click with Opera if (window.opera && !e.altKey) { return; } var tr = Event.findElement(e, 'tr'); @@ -44,7 +44,7 @@ ContextMenu.prototype = { Click: function(e) { this.hideMenu(); - if (Event.findElement(e, 'a') != document && Event.findElement(e, 'a') != undefined ) { return; } + if (Event.element(e).tagName == 'A') { return; } if (window.opera && e.altKey) { return; } if (Event.isLeftClick(e) || (navigator.appVersion.match(/\bMSIE\b/))) { var tr = Event.findElement(e, 'tr'); -- 2.39.5