瀏覽代碼

Input updated to call the 'mouseup' event last, to remain consistant with all other events.

dev
Bryan Miller 6 年之前
父節點
當前提交
1d3024c167
共有 1 個檔案被更改,包括 2 行新增2 行删除
  1. +2
    -2
      app/js/ui/Input.js

+ 2
- 2
app/js/ui/Input.js 查看文件

@@ -553,11 +553,11 @@ export default class Input{
button: button,
delta: 0,
action: "mouseup"
}
this.__emitter.emit("mouseup", data);
}
if (diff <= MOUSECLICK_DELAY && this.__mouseButtons.length <= 0){
this.__emitter.emit("mouseclick", data);
}
this.__emitter.emit("mouseup", data);
}
}
return false;

Loading…
取消
儲存