startDrag: function(ev) {
if(ev.originalEvent.initEvent){
return;
}
if (!this.isListening) { // startDrag must have manually initiated
this.startListening();
} if (!this.isDragging) {
this.isDragging = true;
this.dragStart(ev);
}
}
修改上面的js,增加第一个if判断。