mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 04:14:21 +08:00
style(components): remove console logs
This commit is contained in:
@ -227,7 +227,7 @@ export class Refresher {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// prevent native scroll events
|
// prevent native scroll events
|
||||||
console.log('preventDefault');
|
console.debug('preventDefault');
|
||||||
ev.preventDefault();
|
ev.preventDefault();
|
||||||
|
|
||||||
// the refresher is actively pulling at this point
|
// the refresher is actively pulling at this point
|
||||||
|
@ -196,8 +196,6 @@ export class Tabbar {
|
|||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
console.log('render tabbar');
|
|
||||||
|
|
||||||
const selectedTab = this.selectedTab;
|
const selectedTab = this.selectedTab;
|
||||||
const ionTabbarHighlight = this.highlight ? <div class="animated tabbar-highlight" /> as HTMLElement : null;
|
const ionTabbarHighlight = this.highlight ? <div class="animated tabbar-highlight" /> as HTMLElement : null;
|
||||||
const tabButtons = this.tabs.map(tab => <ion-tab-button
|
const tabButtons = this.tabs.map(tab => <ion-tab-button
|
||||||
|
@ -306,8 +306,6 @@ export class Tabs implements NavOutlet {
|
|||||||
];
|
];
|
||||||
|
|
||||||
if (!this.tabbarHidden) {
|
if (!this.tabbarHidden) {
|
||||||
console.log('render tabs');
|
|
||||||
|
|
||||||
dom.push(
|
dom.push(
|
||||||
<ion-tabbar
|
<ion-tabbar
|
||||||
tabs={this.tabs.slice()}
|
tabs={this.tabs.slice()}
|
||||||
|
Reference in New Issue
Block a user