Explorar el Código

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

master
Bryan Miller hace 5 años
padre
commit
59978a550d
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      src/common/io.js

src/common/wireable.js → src/common/io.js Ver fichero

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

Cargando…
Cancelar
Guardar