From b66fc45a20bc849e3a8217876a9f9746190572ce Mon Sep 17 00:00:00 2001 From: Max Lynch Date: Wed, 30 Sep 2015 15:57:05 -0500 Subject: [PATCH] chore(logs): removed bad console error --- ionic/components/app/app.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ionic/components/app/app.ts b/ionic/components/app/app.ts index b1869f1696..c4164b4201 100644 --- a/ionic/components/app/app.ts +++ b/ionic/components/app/app.ts @@ -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; }