Просмотр исходного кода

Fixed a stupid mistake in EventCaller.event_listerner_count()

dev-tmpl
Bryan Miller 6 лет назад
Родитель
Сommit
45c682bac0
1 измененных файлов: 1 добавлений и 1 удалений
  1. +1
    -1
      app/js/EventCaller.js

+ 1
- 1
app/js/EventCaller.js Просмотреть файл

@@ -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;
}

Загрузка…
Отмена
Сохранить