瀏覽代碼

Fixed bug that didn't test listener type.

dev-tmpl
Bryan Miller 6 年之前
父節點
當前提交
6919de7f05
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. +2
    -0
      app/js/EventCaller.js

+ 2
- 0
app/js/EventCaller.js 查看文件

@@ -63,6 +63,8 @@ export class EventCaller{
* @returns {this}
*/
listen(eventName, callback, owner=null, once=false){
if (typeof(callback) !== 'function')
throw new TypeError("Expected callback argument to be a function or class method.");
try{
if (!this.is_listening(eventName, callback, owner)){
if (!this.__listeners.hasOwnProperty(eventName)){

Loading…
取消
儲存