Replaced innerHTML with textContent to remove warning of Mozillas add-on validation
This commit is contained in:
parent
48283328c7
commit
07d3bee935
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"manifest_version": 2,
|
||||
"name": "LocalCDN (fork from Decentraleyes)",
|
||||
"version": "2.1.1",
|
||||
"version": "2.1.2",
|
||||
|
||||
"author": "nobody",
|
||||
|
||||
|
|
|
@ -58,7 +58,7 @@ options._renderOptionsPanel = function () {
|
|||
options._renderLocaleNotice();
|
||||
}
|
||||
|
||||
document.getElementById('last-mapping-update').innerHTML = lastMappingUpdate;
|
||||
document.getElementById('last-mapping-update').textContent = lastMappingUpdate;
|
||||
};
|
||||
|
||||
options._renderBlockMissingNotice = function () {
|
||||
|
|
Loading…
Reference in New Issue