refactor(textarea): remove type input from textarea

This commit is contained in:
mhartington
2016-11-07 15:04:53 -05:00
parent be72d39bd9
commit b4b9adb7fc

View File

@ -320,17 +320,6 @@ export class TextArea extends InputBase {
super.setValue(val);
}
/**
* @private
*/
@Input()
get type() {
return this._type;
}
set type(val: any) {
super.setType(val);
}
/**
* @input {bool} Wheather the textara should be disabled or not
*/