From 3f25687c1cf9fda0028e44e4959a2870fb452ada Mon Sep 17 00:00:00 2001 From: Drew Rygh Date: Fri, 4 Dec 2015 11:22:41 -0600 Subject: [PATCH] docs(labels): basic usage --- ionic/components/text-input/label.ts | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/ionic/components/text-input/label.ts b/ionic/components/text-input/label.ts index b55fea67ce..9c7a435e80 100644 --- a/ionic/components/text-input/label.ts +++ b/ionic/components/text-input/label.ts @@ -3,7 +3,19 @@ import {Directive, Optional} from 'angular2/angular2'; import {Config} from '../../config/config'; import {TextInput} from './text-input'; import {pointerCoord, hasPointerMoved} from '../../util/dom'; - +/** + * @name Label + * @description + * Labels describe the data that the user should enter in to an input element. + * @usage + * ```html + * + * Username + * + * + * ``` + * + */ @Directive({ selector: 'ion-label',