1
0
Fork 0

remove dead reference to jqconsole

This commit is contained in:
jsteemann 2019-04-01 09:42:48 +02:00
parent 1199f6d06e
commit 16a1fabf20
1 changed files with 2 additions and 6 deletions

View File

@ -1,5 +1,5 @@
/* jshint -W051:true */
/* global jqconsole, Symbol */
/* global Symbol */
/* eslint-disable */
global.DEFINE_MODULE('console', (function () {
'use strict'
@ -66,11 +66,7 @@ global.DEFINE_MODULE('console', (function () {
delete global.SYS_LOG;
} else {
// this will work in the web interface
log = function (level, message) {
if (typeof jqconsole !== 'undefined') {
jqconsole.Write(message + '\n', 'jssuccess');
}
};
log = function (level, message) {};
}
// //////////////////////////////////////////////////////////////////////////////