浏览代码

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 查看文件

} }


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


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

正在加载...
取消
保存