]> source.dussan.org Git - redmine.git/commitdiff
Fixes a javascript comment (#3238).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 25 Apr 2009 08:53:14 +0000 (08:53 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 25 Apr 2009 08:53:14 +0000 (08:53 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2689 e93f8b46-1217-0410-a6f0-8f06a7374b81

public/javascripts/context_menu.js

index 955650d6a503747d5358a7efd1868290efe04703..dac5076e2ef7bcd59497ec965a31166660a8066d 100644 (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