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:
parent
5ab582387e
commit
73ca9d9161
|
@ -8,7 +8,7 @@ ContextMenu.prototype = {
|
||||||
initialize: function (url) {
|
initialize: function (url) {
|
||||||
this.url = url;
|
this.url = url;
|
||||||
|
|
||||||
// prevent selection when using Ctrl/Shit key
|
// prevent text selection in the issue list
|
||||||
var tables = $$('table.issues');
|
var tables = $$('table.issues');
|
||||||
for (i=0; i<tables.length; i++) {
|
for (i=0; i<tables.length; i++) {
|
||||||
tables[i].onselectstart = function () { return false; } // ie
|
tables[i].onselectstart = function () { return false; } // ie
|
||||||
|
|
Loading…
Reference in New Issue