Explorar el Código

Fixed a stupid mistake in EventCaller.event_listerner_count()

dev-tmpl
Bryan Miller hace 6 años
padre
commit
45c682bac0
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      app/js/EventCaller.js

+ 1
- 1
app/js/EventCaller.js Ver fichero

@@ -137,7 +137,7 @@ export class EventCaller{
if (eventName.length <= 0)
throw new ValueError("Argument eventName cannot be a zero-length string.");
if (this.__listener.hasOwnProperty(eventName)){
return this.__listener.length;
return this.__listener[eventName].length;
}
return 0;
}

Cargando…
Cancelar
Guardar