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

Do not disable text selection in the issue list.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3543 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent bd5fe10c
......@@ -8,13 +8,6 @@ ContextMenu.prototype = {
initialize: function (url) {
this.url = url;
this.createMenu();
// prevent text selection in the issue list
var tables = $$('table.issues');
for (i=0; i<tables.length; i++) {
tables[i].onselectstart = function () { return false; } // ie
tables[i].onmousedown = function () { return false; } // mozilla
}
if (!observingContextMenuClick) {
Event.observe(document, 'click', this.Click.bindAsEventListener(this));
......@@ -167,6 +160,7 @@ ContextMenu.prototype = {
addSelection: function(tr) {
tr.addClassName('context-menu-selection');
this.checkSelectionBox(tr, true);
this.clearDocumentSelection();
},
toggleSelection: function(tr) {
......@@ -196,6 +190,14 @@ ContextMenu.prototype = {
isSelected: function(tr) {
return Element.hasClassName(tr, 'context-menu-selection');
},
clearDocumentSelection: function() {
if (document.selection) {
document.selection.clear(); // IE
} else {
window.getSelection().removeAllRanges();
}
}
}
......
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