Skip to content

Commit

Permalink
style(tabs): fix linter errors, change log to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
brandyscarney committed Jun 8, 2016
1 parent c67ce8c commit bc306c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/tabs/tabs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit bc306c6

Please sign in to comment.