From bcda08e68a51a0a0310f9c76fcafa64eb937d72a Mon Sep 17 00:00:00 2001 From: mhartington Date: Tue, 2 Feb 2016 16:01:10 -0500 Subject: [PATCH] docs(tabs): update docs --- ionic/components/tabs/tabs.ts | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/ionic/components/tabs/tabs.ts b/ionic/components/tabs/tabs.ts index 0ab65128f3..cef79ec365 100644 --- a/ionic/components/tabs/tabs.ts +++ b/ionic/components/tabs/tabs.ts @@ -21,6 +21,7 @@ import {isUndefined} from '../../util/util'; * @property {any} [tabbarPlacement] - set position of the tabbar, top or bottom * @property {any} [tabbarIcons] - set the position of the tabbar's icons: top, bottom, left, right, hide * @property {any} [preloadTabs] - sets whether to preload all the tabs, true or false + * @property {any} (change) - expression you want to evaluate when the tabs chage * @usage * ```html * @@ -81,15 +82,40 @@ export class Tabs extends Ion { * @private */ navbarContainerRef: ViewContainerRef; + + /** + * @private + */ subPages: boolean; + /** + * @private + */ @Input() selectedIndex: any; + /** + * @private + */ @Input() preloadTabs: any; + /** + * @private + */ @Input() tabbarIcons: string; + /** + * @private + */ @Input() tabbarPlacement: string; + /** + * @private + */ @Output() change: EventEmitter = new EventEmitter(); + /** + * @private + */ @ViewChild(TabHighlight) private _highlight: TabHighlight; + /** + * @private + */ @ViewChildren(TabButton) private _btns; constructor(