1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

tiny lint thing in debug node... missing ;

This commit is contained in:
dceejay 2015-06-15 20:38:09 +01:00
parent d8eb926e2c
commit 8a6d11b191

View File

@ -204,7 +204,7 @@
var errorLvl = 20; var errorLvl = 20;
if (o.hasOwnProperty("level") && o.level === 30) { if (o.hasOwnProperty("level") && o.level === 30) {
errorLvl = 30; errorLvl = 30;
errorLvlType = 'warn' errorLvlType = 'warn';
} }
msg.className = 'debug-message debug-message-level-' + errorLvl; msg.className = 'debug-message debug-message-level-' + errorLvl;
msg.innerHTML += '<span class="debug-message-topic">[function] : (' + errorLvlType + ')</span>'; msg.innerHTML += '<span class="debug-message-topic">[function] : (' + errorLvlType + ')</span>';