瀏覽代碼

Renamed wireable.js to io.js to match exported class name. Fixed bug

master
Bryan Miller 5 年之前
父節點
當前提交
59978a550d
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      src/common/io.js

src/common/wireable.js → src/common/io.js 查看文件

@@ -56,12 +56,12 @@ class IO{
}

triggerRead(){
this.__rlisteners.apply(this.__rlisteners, Array.prototype.slice.call(arguments));
this.__rlisteners.trigger.apply(this.__rlisteners, Array.prototype.slice.call(arguments));
return this;
}

triggerWrite(){
this.__wlisteners.apply(this.__wlisteners, Array.prototype.slice.call(arguments));
this.__wlisteners.trigger.apply(this.__wlisteners, Array.prototype.slice.call(arguments));
return this;
}
}

Loading…
取消
儲存