diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2009-04-25 08:53:14 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2009-04-25 08:53:14 +0000 |
commit | 73ca9d916146f6b02df0b5928d521b873c4c7fe1 (patch) | |
tree | eb2ed61da8b7b710bc909c7dfd062608c1dbaf1e /public | |
parent | 5ab582387ea763f5cc8577eb872bb1a2a3859469 (diff) | |
download | redmine-73ca9d916146f6b02df0b5928d521b873c4c7fe1.tar.gz redmine-73ca9d916146f6b02df0b5928d521b873c4c7fe1.zip |
Fixes a javascript comment (#3238).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2689 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public')
-rw-r--r-- | public/javascripts/context_menu.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/javascripts/context_menu.js b/public/javascripts/context_menu.js index 955650d6a..dac5076e2 100644 --- a/public/javascripts/context_menu.js +++ b/public/javascripts/context_menu.js @@ -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 |