fix(select): set disabled state from FormControl

This commit is contained in:
Brandy Carney
2017-01-12 17:03:00 -05:00
parent 8e64a28ed3
commit 40e7eb2350
3 changed files with 25 additions and 0 deletions

View File

@ -487,6 +487,13 @@ export class Select extends Ion implements AfterContentInit, ControlValueAccesso
*/
onTouched() { }
/**
* @private
*/
setDisabledState(isDisabled: boolean) {
this.disabled = isDisabled;
}
/**
* @private
*/