Explorar el Código

Fixed a bug in Input

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

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

@@ -274,7 +274,7 @@ function ReorderEventName(ename){
}

// Now handle keyboard event names.
else if (!(key in Object.keys(KEYBYNAME))){
else if (!(key in KEYBYNAME)){
if (!isNaN(key))
ecodes.push(parseInt(key));
else
@@ -741,7 +741,7 @@ export default class Input{
} else {
ename = ReorderEventName(ename);
if (ename === ""){
throw new ValueError("Failed to parse key or key combination.");
throw new Error("Failed to parse key or key combination.");
}
this.__emitter.listen(ename, func, owner, once);
}

Cargando…
Cancelar
Guardar