mirror of
https://github.com/lxsang/antos-frontend.git
synced 2025-07-17 22:39:47 +02:00
Update NSpinnerTag.ts
This commit is contained in:
@ -156,6 +156,10 @@ namespace OS {
|
||||
* @memberof NSpinnerTag
|
||||
*/
|
||||
set value(v: number) {
|
||||
if(this._value === v || isNaN(v))
|
||||
{
|
||||
return;
|
||||
}
|
||||
this._value = v;
|
||||
$(this.refs.holder).val(this._value);
|
||||
const evt = { id: this.aid, data: v };
|
||||
|
Reference in New Issue
Block a user