- all if/while/for/etc blocks have brackets on same line - functions have brackets on new line - no blocks without brackets - all code starts on col 0 and there are no tab intends anymore off: came case for classes and class methods ignore: _ prefix functions (we can't change that anymore)
17 lines
411 B
JavaScript
17 lines
411 B
JavaScript
/*
|
|
********************************************************************
|
|
* AUTHOR: Clemens Schwaighofer
|
|
* DATE: 2015/4/24
|
|
* DESCRIPTION:
|
|
* debug javascript
|
|
* HISTORY:
|
|
********************************************************************
|
|
*/
|
|
|
|
// if debug is set to true, console log messages are printed
|
|
if (!DEBUG) {
|
|
$($H(window.console)).each(function(w) {
|
|
window.console[w.key] = function() {};
|
|
});
|
|
}
|