瀏覽代碼

Fixed a stupid mistake in EventCaller.event_listerner_count()

dev-tmpl
Bryan Miller 6 年之前
父節點
當前提交
45c682bac0
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      app/js/EventCaller.js

+ 1
- 1
app/js/EventCaller.js 查看文件

if (eventName.length <= 0) if (eventName.length <= 0)
throw new ValueError("Argument eventName cannot be a zero-length string."); throw new ValueError("Argument eventName cannot be a zero-length string.");
if (this.__listener.hasOwnProperty(eventName)){ if (this.__listener.hasOwnProperty(eventName)){
return this.__listener.length;
return this.__listener[eventName].length;
} }
return 0; return 0;
} }

Loading…
取消
儲存