1
0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2024-12-22 21:00:23 +01:00

Spell checking.

This commit is contained in:
kkapsner 2018-08-26 23:13:23 +02:00
parent da14aaff51
commit 103c69d4b8
3 changed files with 8 additions and 6 deletions

View File

@ -19,7 +19,9 @@
"ignorelist", "ignorelist",
"onloaded", "onloaded",
"prefs", "prefs",
"webgl" "spodermenpls",
"webgl",
"yfdyh"
], ],
"cSpell.language": "en,de" "cSpell.language": "en,de,en-GB"
} }

View File

@ -791,7 +791,7 @@
"description": "" "description": ""
}, },
"audioUseFixedIndices_description": { "audioUseFixedIndices_description": {
"message": "If some of the used indices should be always faked.", "message": "If some of the used indices should always be faked.",
"description": "" "description": ""
}, },
"audioFixedIndices_title": { "audioFixedIndices_title": {

View File

@ -2,7 +2,7 @@
var addTest = (function(){ var addTest = (function(){
"use strict"; "use strict";
var stati = [ var statusDefinitions = [
{className: "notRun", text: "not run"}, {className: "notRun", text: "not run"},
{className: "loud", text: "CB detected"}, {className: "loud", text: "CB detected"},
{className: "stealthy", text: "CB not detected"}, {className: "stealthy", text: "CB not detected"},
@ -23,7 +23,7 @@ var addTest = (function(){
status = 3; status = 3;
} }
var li = document.createElement("li"); var li = document.createElement("li");
li.className = stati[status].className; li.className = statusDefinitions[status].className;
var nameNode = document.createElement("span"); var nameNode = document.createElement("span");
nameNode.className = "name"; nameNode.className = "name";
nameNode.textContent = name; nameNode.textContent = name;
@ -32,7 +32,7 @@ var addTest = (function(){
li.appendChild(document.createTextNode(": ")); li.appendChild(document.createTextNode(": "));
var statusNode = document.createElement("span"); var statusNode = document.createElement("span");
statusNode.className = "status"; statusNode.className = "status";
statusNode.textContent = stati[status].text; statusNode.textContent = statusDefinitions[status].text;
statusNode.title = logs.join("\n"); statusNode.title = logs.join("\n");
li.appendChild(statusNode); li.appendChild(statusNode);
ul.appendChild(li); ul.appendChild(li);