Fixes context menu with Opera (#1655).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1762 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
954bddbadf
commit
e395d3e46d
|
@ -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');
|
||||
|
|
Loading…
Reference in New Issue