style(components): remove console logs

This commit is contained in:
Brandy Carney
2018-07-13 13:18:44 -04:00
parent 03f9c31e4c
commit a6552a7e23
3 changed files with 1 additions and 5 deletions

View File

@ -227,7 +227,7 @@ export class Refresher {
}
// prevent native scroll events
console.log('preventDefault');
console.debug('preventDefault');
ev.preventDefault();
// the refresher is actively pulling at this point

View File

@ -196,8 +196,6 @@ export class Tabbar {
}
render() {
console.log('render tabbar');
const selectedTab = this.selectedTab;
const ionTabbarHighlight = this.highlight ? <div class="animated tabbar-highlight" /> as HTMLElement : null;
const tabButtons = this.tabs.map(tab => <ion-tab-button

View File

@ -306,8 +306,6 @@ export class Tabs implements NavOutlet {
];
if (!this.tabbarHidden) {
console.log('render tabs');
dom.push(
<ion-tabbar
tabs={this.tabs.slice()}