Removed some redundant console logs

This commit is contained in:
Borys Levytskyi
2015-04-11 22:32:34 +03:00
parent c0c9fdb53c
commit 491141e618
4 changed files with 2 additions and 5 deletions

View File

@@ -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();
};

View File

@@ -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)) {

View File

@@ -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'));
}
};

View File

@@ -86,7 +86,7 @@
this.onFirstTimeResolve(this.resolved);
}
console.log('resolved:', this.name);
// console.log('resolved:', this.name);
};
Container.Registration = Registration;