You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
在代码move方法中,代码如下:
Fmover.prototype._move = function _move (event) {
var this$1 = this;
var F = this.fingerd.injectEvent(event);
var returnVal;
var pluginStorLen = this.pluginsStorage.length;
for (var i = 0; i < pluginStorLen; i++) {
returnVal = this$1.pluginsStorage[i].move && this$1.pluginsStorage[i].move(F);
}
if (typeof returnVal !== 'undefined' && !returnVal) {
event.stopPropagation();
}
event.preventDefault();
在代码move方法中,代码如下:
Fmover.prototype._move = function _move (event) {
var this$1 = this;
};
建议修改为:
if (typeof returnVal !== 'undefined' && !returnVal) {
event.stopPropagation();
event.preventDefault();
}
The text was updated successfully, but these errors were encountered: