disable spell check in textareas

This commit is contained in:
zzz
2011-01-02 18:58:06 +00:00
parent bb74bc33d1
commit bb39d8c6fd
7 changed files with 12 additions and 7 deletions

View File

@ -38,7 +38,7 @@ public class ConfigLoggingHelper extends HelperBase {
sortedLogs.add(prefix);
}
buf.append("<textarea name=\"levels\" rows=\"4\" cols=\"60\" wrap=\"off\">");
buf.append("<textarea name=\"levels\" rows=\"4\" cols=\"60\" wrap=\"off\" spellcheck=\"false\">");
for (Iterator iter = sortedLogs.iterator(); iter.hasNext(); ) {
String prefix = (String)iter.next();
String level = limits.getProperty(prefix);