Skip to content

Commit

Permalink
fix(tabs): add TabHighlight to IONIC_DIRECTIVES
Browse files Browse the repository at this point in the history
fixes #8294
  • Loading branch information
manucorporat committed Sep 30, 2016
1 parent d893441 commit ac88547
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/tabs/test/basic/app-module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,9 @@ export class E2EApp {
TabsPage
],
imports: [
IonicModule.forRoot(E2EApp)
IonicModule.forRoot(E2EApp, {
tabsHighlight: true,
})
],
bootstrap: [IonicApp],
entryComponents: [
Expand Down
2 changes: 2 additions & 0 deletions src/directives.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ import { Spinner } from './components/spinner/spinner';
import { Tab } from './components/tabs/tab';
import { Tabs } from './components/tabs/tabs';
import { TabButton } from './components/tabs/tab-button';
import { TabHighlight } from './components/tabs/tab-highlight';
import { TextInput, TextArea } from './components/input/input';
import { Thumbnail } from './components/thumbnail/thumbnail';
import { Toggle } from './components/toggle/toggle';
Expand Down Expand Up @@ -228,6 +229,7 @@ export const IONIC_DIRECTIVES: any[] = [
Tab,
Tabs,
TabButton,
TabHighlight,
TextArea,
TextInput,
Thumbnail,
Expand Down

0 comments on commit ac88547

Please sign in to comment.