1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-10-11 03:24:25 +02:00

fix clear.console error. fixes #118

This commit is contained in:
Kushagra Gour
2017-05-21 23:14:38 +05:30
parent 18eebe51d8
commit ba14e66116
2 changed files with 6 additions and 1 deletions

View File

@@ -50,6 +50,10 @@
}
function clear() {
if (_options.noUi) {
window.parent.clearConsole();
return;
}
logEl.innerHTML = '';
}