fix(range): set disabled state from FormControl

This commit is contained in:
Brandy Carney
2017-01-12 17:02:47 -05:00
parent 99c493e8ac
commit 8e64a28ed3
3 changed files with 30 additions and 1 deletions

View File

@ -626,6 +626,13 @@ export class Range extends Ion implements AfterViewInit, ControlValueAccessor, O
*/
onTouched() { }
/**
* @private
*/
setDisabledState(isDisabled: boolean) {
this.disabled = isDisabled;
}
/**
* @private
*/