Explorar el Código

Reverted last change to Input. Didn't work.

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

+ 5
- 7
app/js/ui/Input.js Ver fichero

@@ -451,13 +451,11 @@ export default class Input{
inbounds: true
}
if (this.__mouseTarget !== null){
if (this.__mouseTarget === document.activeElement){
var rect = this.__mouseTarget.getBoundingClientRect();
pos.x -= rect.left;
pos.y -= rect.top;
pos.inbounds = (pos.x >= 0 && pos.x < rect.width && pos.y >= 0 && pos.y < rect.height);
}
pos.inbounds = false;
var rect = this.__mouseTarget.getBoundingClientRect();
pos.x -= rect.left;
pos.y -= rect.top;
// TODO: Detect if element OVER __mouseTarget
pos.inbounds = (pos.x >= 0 && pos.x < rect.width && pos.y >= 0 && pos.y < rect.height);
}
pos.x = Math.floor(pos.x);
pos.y = Math.floor(pos.y);

Cargando…
Cancelar
Guardar