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