From f44dd93ed4ea1e74a2bd1cc27dff5d93a90de23a Mon Sep 17 00:00:00 2001 From: Max Lynch Date: Sun, 30 Aug 2015 22:18:45 -0500 Subject: [PATCH] chore(aside): remove console logs --- ionic/components/aside/aside.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ionic/components/aside/aside.ts b/ionic/components/aside/aside.ts index fc0a2cf636..1db366adde 100644 --- a/ionic/components/aside/aside.ts +++ b/ionic/components/aside/aside.ts @@ -56,20 +56,17 @@ export class Aside extends Ion { //this.animation = new Animation(element.querySelector('backdrop')); this.contentClickFn = (e) => { - console.log('Click', this.isOpen, this.isChanging); if(!this.isOpen || this.isChanging) { return; } this.close(); }; this.finishChanging = util.debounce(() => { - console.log('Done changing'); this.setChanging(false); }); // TODO: Use Animation Class this.getNativeElement().addEventListener('transitionend', ev => { - console.log("Transition end"); //this.setChanging(false) clearTimeout(this.setChangeTimeout); this.setChangeTimeout = setInterval(this.finishChanging, 400); @@ -92,7 +89,6 @@ export class Aside extends Ion { if(this.contentElement) { this.contentElement.addEventListener('transitionend', ev => { - console.log("Transition end"); //this.setChanging(false) clearTimeout(this.setChangeTimeout); this.setChangeTimeout = setInterval(this.finishChanging, 400);