chore(): fix Input types

This commit is contained in:
Tim Lancina
2016-01-13 23:52:10 -06:00
parent 7f19ba5396
commit c475a6490b
5 changed files with 22 additions and 18 deletions

View File

@ -1,4 +1,4 @@
import {Directive, ElementRef, Renderer} from 'angular2/core';
import {Directive, ElementRef, Renderer, Input} from 'angular2/core';
import {Form} from '../../util/form';
@ -23,14 +23,12 @@ import {Form} from '../../util/form';
@Directive({
selector: 'ion-label',
inputs: [
'id'
],
host: {
'[attr.id]': 'id'
}
})
export class Label {
@Input() id: string;
constructor(
private _form: Form,