configEditor, only show keys in debug mode

This commit is contained in:
2020-04-14 16:26:47 +02:00
parent 71c6ee887a
commit 055df91ee7
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -1,4 +1,6 @@
{
"debug": false,
"player.name": "Player",
"player.leaderboards": false,
+1 -1
View File
@@ -22,7 +22,7 @@ class ConfigEditor extends Popup {
let id='cfgInput-'+(lastCEId++)+'-'+key.replace(/\./g, '-');
let label=span.appendChild(document.createElement('label'));
label.innerText=data.name;
label.title=key;
if(config.getB('debug')) label.title=key;
let input;
if(data.type=='boolean') {