Explorar el Código

Small modification on mouse event triggering.

dev-tmpl
Bryan Miller hace 5 años
padre
commit
a801b4f90a
Se han modificado 1 ficheros con 1 adiciones y 2 borrados
  1. +1
    -2
      app/js/ui/Input.js

+ 1
- 2
app/js/ui/Input.js Ver fichero

@@ -485,9 +485,8 @@ export default class Input{
delta: 0,
action: "mousemove"
};
if (ename !== "" && ename !== "mousemove")
if (ename !== "")
this.__emitter.emit(ename, data);
this.__emitter.emit("mousemove", data);
}
return false;
}).bind(this);

Cargando…
Cancelar
Guardar