commit
47896b49b5
3 changed files with 8 additions and 8 deletions
|
@ -58,9 +58,9 @@
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
isIcon(node){
|
isIcon(node){
|
||||||
let nodeName = (node.nodeName || "").toLocaleUpperCase();
|
let nodeName = (node.nodeName || '').toLocaleUpperCase();
|
||||||
let isIvu = node.classList.contains("ivu-icon");
|
let isIvu = node.classList.contains('ivu-icon');
|
||||||
if(nodeName == "I" && isIvu){
|
if(nodeName == 'I' && isIvu){
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
|
|
@ -397,10 +397,10 @@
|
||||||
this.currentValue = [...value];
|
this.currentValue = [...value];
|
||||||
|
|
||||||
if (!this.dragging) {
|
if (!this.dragging) {
|
||||||
if (this.currentValue[index] !== this.oldValue[index]) {
|
// if (this.currentValue[index] !== this.oldValue[index]) {
|
||||||
this.emitChange();
|
this.emitChange();
|
||||||
this.oldValue[index] = this.currentValue[index];
|
// this.oldValue[index] = this.currentValue[index];
|
||||||
}
|
// }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
handleDecimal(pos,step){
|
handleDecimal(pos,step){
|
||||||
|
|
Loading…
Add table
Reference in a new issue