chore(): remove console.logs

This commit is contained in:
Dan Bucholtz
2018-01-10 14:28:45 -06:00
parent eb8a8d3fc4
commit d322b8161a
4 changed files with 0 additions and 6 deletions

View File

@ -50,14 +50,12 @@ export class AlertController {
@Listen('body:ionAlertWillPresent') @Listen('body:ionAlertWillPresent')
protected willPresent(event: AlertEvent) { protected willPresent(event: AlertEvent) {
console.log('willPresent: ', event);
this.alerts.push(event.target as HTMLIonAlertElement); this.alerts.push(event.target as HTMLIonAlertElement);
} }
@Listen('body:ionAlertWillDismiss') @Listen('body:ionAlertWillDismiss')
@Listen('body:ionAlertDidUnload') @Listen('body:ionAlertDidUnload')
protected willDismiss(event: AlertEvent) { protected willDismiss(event: AlertEvent) {
console.log('willDismiss: ', event);
const index = this.alerts.indexOf(event.target as HTMLIonAlertElement); const index = this.alerts.indexOf(event.target as HTMLIonAlertElement);
if (index > -1) { if (index > -1) {
this.alerts.splice(index, 1); this.alerts.splice(index, 1);

View File

@ -145,6 +145,5 @@ export function handleBackButtonClick(): Promise<any> {
const promise = menuControllerElement ? isReady(menuControllerElement) : Promise.resolve(); const promise = menuControllerElement ? isReady(menuControllerElement) : Promise.resolve();
return promise.then(() => { return promise.then(() => {
// TODO check if the menu is open, close it if so // TODO check if the menu is open, close it if so
console.log('todo');
}); });
} }

View File

@ -23,8 +23,6 @@ export class Navbar {
backButtonClick(ev: UIEvent) { backButtonClick(ev: UIEvent) {
ev.preventDefault(); ev.preventDefault();
ev.stopPropagation(); ev.stopPropagation();
console.log('back button click');
} }
componentDidLoad() { componentDidLoad() {

View File

@ -49,7 +49,6 @@ export class SegmentButton {
ev.preventDefault(); ev.preventDefault();
ev.stopPropagation(); ev.stopPropagation();
console.log('in segment button click');
this.emitClick(); this.emitClick();
} }