(v)
| 67 | } |
| 68 | |
| 69 | setValue(v) { |
| 70 | const toReturn = super.setValue(v); |
| 71 | |
| 72 | if (this.__onFinishChange) { |
| 73 | this.__onFinishChange.call(this, this.getValue()); |
| 74 | } |
| 75 | return toReturn; |
| 76 | } |
| 77 | |
| 78 | updateDisplay() { |
| 79 | if (dom.isActive(this.__select)) return this; // prevent number from updating if user is trying to manually update |