Fixes a javascript comment (#3238).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2689 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2009-04-25 08:53:14 +00:00
parent 5ab582387e
commit 73ca9d9161
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ ContextMenu.prototype = {
initialize: function (url) {
this.url = url;
// prevent selection when using Ctrl/Shit key
// 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