- fixed all DEFINE to define in config* files - Updates Login class with missing strict declarations - some fixes in Login class for possible errors - Basic class return array layout updates for all rgb sets plus correct static update - Basic class timestamp method fix for not full set (eg missing seconds) - Basic class add method for getting linecount from a file - DB IO class gets a get settings return value method
18 lines
542 B
JavaScript
18 lines
542 B
JavaScript
/* vim: set fileencoding=utf-8 expandtab! shiftwidth=2 : */
|
|
/* modified version of firebugx.js which can cope with
|
|
* firebug 1.2+ and the webkit console */
|
|
|
|
var ConsoleSetup = function() {
|
|
if (!window.console) {
|
|
window.console = {};
|
|
}
|
|
|
|
var names = ['log', 'debug', 'info', 'warn', 'error', 'assert', 'dir', 'dirxml', 'group', 'groupEnd', 'time', 'timeEnd', 'count', 'trace', 'profile', 'profileEnd'];
|
|
|
|
for (var i = 0; i < names.length; ++i) {
|
|
if (!window.console[names[i]]) {
|
|
window.console[names[i]] = function() {};
|
|
}
|
|
}
|
|
}();
|