@dolphinweex/weex-harmony 0.1.31 → 0.1.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
@@ -670,6 +670,9 @@ export default {
|
|
670
670
|
|
671
671
|
// 检查长按过程中的移动
|
672
672
|
checkLongPressMove(e) {
|
673
|
+
if(this.data.isEditing){
|
674
|
+
e.oriEvent.stopImmediatePropagation();
|
675
|
+
}
|
673
676
|
if (!this.data.isEditable) {
|
674
677
|
return;
|
675
678
|
}
|
@@ -684,9 +687,6 @@ export default {
|
|
684
687
|
e.oriEvent.preventDefault();
|
685
688
|
e.oriEvent.stopPropagation();
|
686
689
|
e.oriEvent.stopImmediatePropagation();
|
687
|
-
e.preventDefault && e.preventDefault();
|
688
|
-
e.stopPropagation && e.stopPropagation();
|
689
|
-
e.stopImmediatePropagation && e.stopImmediatePropagation();
|
690
690
|
}
|
691
691
|
}
|
692
692
|
|
@@ -775,9 +775,6 @@ export default {
|
|
775
775
|
e.oriEvent.stopPropagation();
|
776
776
|
e.oriEvent.stopImmediatePropagation();
|
777
777
|
}
|
778
|
-
e.preventDefault && e.preventDefault();
|
779
|
-
e.stopPropagation && e.stopPropagation();
|
780
|
-
e.stopImmediatePropagation && e.stopImmediatePropagation();
|
781
778
|
}
|
782
779
|
|
783
780
|
const touch = e.changedTouches[0];
|