mirror of https://github.com/gorhill/uBlock.git
this fixes #414
This commit is contained in:
parent
f7860cab7c
commit
22fe58e59a
|
@ -676,6 +676,7 @@ var stopPicker = function() {
|
||||||
var startPicker = function(details) {
|
var startPicker = function(details) {
|
||||||
pickerRoot = document.createElement('div');
|
pickerRoot = document.createElement('div');
|
||||||
pickerRoot.id = µBlockId;
|
pickerRoot.id = µBlockId;
|
||||||
|
pickerRoot.setAttribute('lang', navigator.language);
|
||||||
|
|
||||||
var pickerStyle = document.createElement('style');
|
var pickerStyle = document.createElement('style');
|
||||||
pickerStyle.setAttribute('scoped', '');
|
pickerStyle.setAttribute('scoped', '');
|
||||||
|
@ -873,7 +874,7 @@ var startPicker = function(details) {
|
||||||
divDialog = document.createElement('div');
|
divDialog = document.createElement('div');
|
||||||
divDialog.innerHTML = [
|
divDialog.innerHTML = [
|
||||||
'<div>',
|
'<div>',
|
||||||
'<textarea dir="ltr" spellcheck="false"></textarea>',
|
'<textarea lang="en" dir="ltr" spellcheck="false"></textarea>',
|
||||||
'<div>',
|
'<div>',
|
||||||
'<button id="create" type="button" disabled="disabled">.</button>',
|
'<button id="create" type="button" disabled="disabled">.</button>',
|
||||||
'<button id="pick" type="button">.</button>',
|
'<button id="pick" type="button">.</button>',
|
||||||
|
@ -881,8 +882,8 @@ var startPicker = function(details) {
|
||||||
'</div>',
|
'</div>',
|
||||||
'</div>',
|
'</div>',
|
||||||
'<ul>',
|
'<ul>',
|
||||||
'<li id="netFilters"><span>.</span><ul></ul></li>',
|
'<li id="netFilters"><span>.</span><ul lang="en"></ul></li>',
|
||||||
'<li id="cosmeticFilters"><span>.</span> <span>.</span><ul></ul></li>',
|
'<li id="cosmeticFilters"><span>.</span> <span>.</span><ul lang="en"></ul></li>',
|
||||||
'</ul>'
|
'</ul>'
|
||||||
].join('');
|
].join('');
|
||||||
pickerRoot.appendChild(divDialog);
|
pickerRoot.appendChild(divDialog);
|
||||||
|
|
Loading…
Reference in New Issue