From bc306c6ce87479e25056c8b9d8b9e4236a2ab172 Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Wed, 8 Jun 2016 12:08:57 -0400 Subject: [PATCH] style(tabs): fix linter errors, change log to debug --- src/components/tabs/tabs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/tabs/tabs.ts b/src/components/tabs/tabs.ts index b40985cc48..4cb361445a 100644 --- a/src/components/tabs/tabs.ts +++ b/src/components/tabs/tabs.ts @@ -401,7 +401,7 @@ export class Tabs extends Ion { previousTab(trimHistory: boolean = true): Tab { // walk backwards through the tab selection history // and find the first previous tab that is enabled and shown - console.log('run previousTab', this.selectHistory) + console.debug('run previousTab', this.selectHistory); for (var i = this.selectHistory.length - 2; i >= 0; i--) { var tab = this._tabs.find(t => t.id === this.selectHistory[i]); if (tab && tab.enabled && tab.show) {