refactor to add disable

This commit is contained in:
gerard 2018-09-05 13:56:07 +02:00
parent f23ea2d821
commit d3ce915b5d
1 changed files with 4 additions and 0 deletions

View File

@ -53,6 +53,10 @@ export default class inputRange extends Input {
set model(value) {
this._model = value;
}
set disabled(value) {
this.input.disabled = value;
}
}
inputRange.$inject = ['$element', '$scope'];