Upgraded to Prototype 1.6.0.1.

git-svn-id: http://redmine.rubyforge.org/svn/trunk@1594 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2008-06-28 11:34:53 +00:00
parent bd3191f80d
commit 75a5dbd01d
5 changed files with 4102 additions and 2200 deletions
+4 -4
View File
@@ -28,11 +28,11 @@ ContextMenu.prototype = {
RightClick: function(e) {
this.hideMenu();
// do not show the context menu on links
if (Event.findElement(e, 'a') != document) { return; }
if (Event.findElement(e, 'a') != document && Event.findElement(e, 'a') != undefined) { return; }
// right-click simulated by Alt+Click with Opera
if (window.opera && !e.altKey) { return; }
var tr = Event.findElement(e, 'tr');
if ((tr == document) || !tr.hasClassName('hascontextmenu')) { return; }
if (tr == document || tr == undefined || !tr.hasClassName('hascontextmenu')) { return; }
Event.stop(e);
if (!this.isSelected(tr)) {
this.unselectAll();
@@ -44,14 +44,14 @@ ContextMenu.prototype = {
Click: function(e) {
this.hideMenu();
if (Event.findElement(e, 'a') != document) { return; }
if (Event.findElement(e, 'a') != document && Event.findElement(e, 'a') != undefined ) { return; }
if (window.opera && e.altKey) { return; }
if (Event.isLeftClick(e) || (navigator.appVersion.match(/\bMSIE\b/))) {
var tr = Event.findElement(e, 'tr');
if (tr!=document && tr.hasClassName('hascontextmenu')) {
// a row was clicked, check if the click was on checkbox
var box = Event.findElement(e, 'input');
if (box!=document) {
if (box!=document && box!=undefined) {
// a checkbox may be clicked
if (box.checked) {
tr.addClassName('context-menu-selection');