luci-app-adblock: disable textarea spellcheck
* disable spellcheck for black- and whitelist textareas Signed-off-by: Dirk Brenken <dev@brenken.org>
This commit is contained in:
parent
a237723de0
commit
92e78f59d3
2 changed files with 2 additions and 0 deletions
|
@ -25,6 +25,7 @@ return view.extend({
|
||||||
E('p', {},
|
E('p', {},
|
||||||
E('textarea', {
|
E('textarea', {
|
||||||
'style': 'width: 100% !important; padding: 5px; font-family: monospace',
|
'style': 'width: 100% !important; padding: 5px; font-family: monospace',
|
||||||
|
'spellcheck': 'false',
|
||||||
'wrap': 'off',
|
'wrap': 'off',
|
||||||
'rows': 25
|
'rows': 25
|
||||||
}, [ blacklist != null ? blacklist : '' ])
|
}, [ blacklist != null ? blacklist : '' ])
|
||||||
|
|
|
@ -25,6 +25,7 @@ return view.extend({
|
||||||
E('p', {},
|
E('p', {},
|
||||||
E('textarea', {
|
E('textarea', {
|
||||||
'style': 'width: 100% !important; padding: 5px; font-family: monospace',
|
'style': 'width: 100% !important; padding: 5px; font-family: monospace',
|
||||||
|
'spellcheck': 'false',
|
||||||
'wrap': 'off',
|
'wrap': 'off',
|
||||||
'rows': 25
|
'rows': 25
|
||||||
}, [ whitelist != null ? whitelist : '' ])
|
}, [ whitelist != null ? whitelist : '' ])
|
||||||
|
|
Loading…
Reference in a new issue