mirror of
https://github.com/kkapsner/CanvasBlocker
synced 2024-12-22 21:00:23 +01:00
Spell checking.
This commit is contained in:
parent
da14aaff51
commit
103c69d4b8
6
.vscode/settings.json
vendored
6
.vscode/settings.json
vendored
@ -19,7 +19,9 @@
|
||||
"ignorelist",
|
||||
"onloaded",
|
||||
"prefs",
|
||||
"webgl"
|
||||
"spodermenpls",
|
||||
"webgl",
|
||||
"yfdyh"
|
||||
],
|
||||
"cSpell.language": "en,de"
|
||||
"cSpell.language": "en,de,en-GB"
|
||||
}
|
@ -791,7 +791,7 @@
|
||||
"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": ""
|
||||
},
|
||||
"audioFixedIndices_title": {
|
||||
|
@ -2,7 +2,7 @@
|
||||
var addTest = (function(){
|
||||
"use strict";
|
||||
|
||||
var stati = [
|
||||
var statusDefinitions = [
|
||||
{className: "notRun", text: "not run"},
|
||||
{className: "loud", text: "CB detected"},
|
||||
{className: "stealthy", text: "CB not detected"},
|
||||
@ -23,7 +23,7 @@ var addTest = (function(){
|
||||
status = 3;
|
||||
}
|
||||
var li = document.createElement("li");
|
||||
li.className = stati[status].className;
|
||||
li.className = statusDefinitions[status].className;
|
||||
var nameNode = document.createElement("span");
|
||||
nameNode.className = "name";
|
||||
nameNode.textContent = name;
|
||||
@ -32,7 +32,7 @@ var addTest = (function(){
|
||||
li.appendChild(document.createTextNode(": "));
|
||||
var statusNode = document.createElement("span");
|
||||
statusNode.className = "status";
|
||||
statusNode.textContent = stati[status].text;
|
||||
statusNode.textContent = statusDefinitions[status].text;
|
||||
statusNode.title = logs.join("\n");
|
||||
li.appendChild(statusNode);
|
||||
ul.appendChild(li);
|
||||
|
Loading…
x
Reference in New Issue
Block a user