webix.ready() and requirejs

it seems webix.ready() doesn’t work with requirejs.

require([
    "webix"
], function(webix) {
    webix.ready(function() {
        console.log("webix ready event"); // never run
    });
})

I can confirm the issue. Will be fixed in the next build.
For now you can use

require([
    "webix"
], function(webix) {
    webix.ready(function() {
        console.log("webix ready event");
    });

    webix.callEvent("onReady", []); //triggers ready state 
})

@maksim Thanks!