From 4ad8c53810675b41646840f48b418bba6149a705 Mon Sep 17 00:00:00 2001 From: mhartington Date: Wed, 10 Feb 2016 12:24:07 -0500 Subject: [PATCH] docs(tab): update inputs/outputs --- ionic/components/tabs/tab.ts | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/ionic/components/tabs/tab.ts b/ionic/components/tabs/tab.ts index fda936de71..57ec6420da 100644 --- a/ionic/components/tabs/tab.ts +++ b/ionic/components/tabs/tab.ts @@ -69,14 +69,8 @@ import {TabButton} from './tab-button'; * ``` * * - * @property {Page} [root] - set the root page for this tab - * @property {String} [tabTitle] - set the title of this tab - * @property {String} [tabIcon] - set the icon for this tab - * @property {Any} [tabBadge] - set the badge for this tab - * @property {String} [tabBadgeStyle] - set the badge color for this tab - * @property {Any} (select) - method to call when the current tab is selected * - * @demo /docs/v2/demos/tabs/ + * @demo /docs/v2/demos/tabs/ */ @Component({ selector: 'ion-tab', @@ -107,32 +101,32 @@ export class Tab extends NavController { /** - * @private + * @input {Page} Set the root page for this tab */ @Input() root: Type; /** - * @private + * @input {String} Set the title of this tab */ @Input() tabTitle: string; /** - * @private + * @input {String} Set the icon for this tab */ @Input() tabIcon: string; /** - * @private + * @input {String} Set the badge for this tab */ @Input() tabBadge: string; /** - * @private + * @input {String} Set the badge color for this tab */ @Input() tabBadgeStyle: string; /** - * @private + * @pinput {Any} Method to call when the current tab is selected */ @Output() select: EventEmitter = new EventEmitter();