ソースを参照

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

読み込み中…
キャンセル
保存