Merge pull request #3834 from dibdot/adblock

luci-app-adblock: disable textarea spellcheck
This commit is contained in:
Dirk Brenken 2020-04-04 09:16:20 +02:00 committed by GitHub
commit bee97d8041
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View file

@ -25,6 +25,7 @@ return view.extend({
E('p', {},
E('textarea', {
'style': 'width: 100% !important; padding: 5px; font-family: monospace',
'spellcheck': 'false',
'wrap': 'off',
'rows': 25
}, [ blacklist != null ? blacklist : '' ])

View file

@ -25,6 +25,7 @@ return view.extend({
E('p', {},
E('textarea', {
'style': 'width: 100% !important; padding: 5px; font-family: monospace',
'spellcheck': 'false',
'wrap': 'off',
'rows': 25
}, [ whitelist != null ? whitelist : '' ])