diff --git a/ionic/components/tabs/tab.ts b/ionic/components/tabs/tab.ts index 0165be4dec..9c9e334fd2 100644 --- a/ionic/components/tabs/tab.ts +++ b/ionic/components/tabs/tab.ts @@ -94,19 +94,18 @@ export class Tab extends NavController { this.tabs.select(this); } else if (this.tabs.preloadTabs) { - setTimeout(() => { - this.load(() => { - console.debug('preloaded tab', this.getIndex()); - }); - }, 500 * this.getIndex()); + // setTimeout(() => { + // this.load(() => { + // console.debug('preloaded tab', this.getIndex()); + // }); + // }, 500 * this.getIndex()); } } load(callback) { if (!this._loaded && this.root) { let opts = { - animate: false, - navbar: false + animate: false }; this.push(this.root, null, opts).then(callback); this._loaded = true;