Commit e395d3e4 authored by Jean-Philippe Lang's avatar Jean-Philippe Lang

Fixes context menu with Opera (#1655).

git-svn-id: http://redmine.rubyforge.org/svn/trunk@1762 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 954bddba
......@@ -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');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment