You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now a new iro.ColorPicker(...) immediately returns an object but finishes initialisation of the object after the document.readyState changed to "complete".
It would be amazing if there would be an event issued after the _init function finished doing its job and the colorPicker object is completely initialized.
For example the following at the end of the _init function:
_init: function _init(el, opts) {
...
this.emit("initialized", this);
},
Thanks!
The text was updated successfully, but these errors were encountered:
Right now a
new iro.ColorPicker(...)
immediately returns an object but finishes initialisation of the object after the document.readyState changed to "complete".It would be amazing if there would be an event issued after the _init function finished doing its job and the colorPicker object is completely initialized.
For example the following at the end of the _init function:
Thanks!
The text was updated successfully, but these errors were encountered: