docs(components): icon tabs example

This commit is contained in:
Drew Rygh
2015-11-03 13:14:39 -06:00
parent bb8f87faa7
commit 8b0e56ce20
3 changed files with 88 additions and 1 deletions

View File

@ -54,7 +54,11 @@ import {ModalsPage} from './modals/modals';
import {NavigationPage} from './navigation/navigation';
import {PopupsPage} from './popups/popups';
import {SlidesPage} from './slides/slides';
import {TabsPage} from './tabs/tabs';
import {TabsIconPage} from './tabs/tabs-icon';
import {TabsIconTextPage} from './tabs/tabs-icon-text';
@Directive({
selector: '.android-attr',
@ -160,7 +164,10 @@ export function getPageFor(hash) {
'navigation': NavigationPage,
'popups': PopupsPage,
'slides': SlidesPage,
'tabs': TabsPage
'tabs': TabsPage,
'tabs-icon': TabsIconPage,
'tabs-icon-text': TabsIconTextPage,
}[hash]
}