chore(logs): removed bad console error

This commit is contained in:
Max Lynch
2015-09-30 15:57:05 -05:00
parent 89f131b2de
commit b66fc45a20

View File

@@ -65,6 +65,11 @@ export class IonicApp {
window.addEventListener('orientationchange', (event) => {
events.publish('app:rotated', event);
});
window.addEventListener('statusTap', (event) => {
alert('Status tap!');
console.log(event);
})
}
/**
@@ -176,7 +181,7 @@ export class IonicApp {
*/
register(id, component) {
if (this.components[id] && this.components[id] !== component) {
console.error('Component id "' + id + '" already registered.');
//console.error('Component id "' + id + '" already registered.');
}
this.components[id] = component;
}