mirror of
https://github.com/BorysLevytskyi/BitwiseCmd.git
synced 2026-01-31 16:14:33 +01:00
Removed some redundant console logs
This commit is contained in:
@@ -13,11 +13,9 @@
|
||||
app.debugMode = false;
|
||||
|
||||
app.bootstrap = function(rootViewElement) {
|
||||
console.group('Bootstrap');
|
||||
this.rootViewElement = rootViewElement;
|
||||
this.set('rootView', rootViewElement)
|
||||
this.initialize();
|
||||
console.groupEnd();
|
||||
};
|
||||
|
||||
|
||||
|
||||
@@ -4,7 +4,6 @@ app.run(function(){
|
||||
var cmdConfig = app.get('cmdConfig');
|
||||
|
||||
cmdConfig.observe('theme', function (theme) {
|
||||
console.log('changed theme');
|
||||
var theOther = theme == 'dark' ? 'light' : 'dark';
|
||||
|
||||
if(rootView.classList.contains(theme)) {
|
||||
|
||||
@@ -74,7 +74,7 @@
|
||||
sb.push("\treturn html.join('');");
|
||||
sb.push('}');
|
||||
sb.push('})()');
|
||||
console.log(sb.join('\r\n'));
|
||||
// console.log(sb.join('\r\n'));
|
||||
return eval(sb.join('\r\n'));
|
||||
}
|
||||
};
|
||||
|
||||
@@ -86,7 +86,7 @@
|
||||
this.onFirstTimeResolve(this.resolved);
|
||||
}
|
||||
|
||||
console.log('resolved:', this.name);
|
||||
// console.log('resolved:', this.name);
|
||||
};
|
||||
|
||||
Container.Registration = Registration;
|
||||
|
||||
Reference in New Issue
Block a user