All js in one file

Hi,
I am trying to develop application which will have “offline” mode, which will install shortcut at users desktop and it will be actually html file that will be open in some browser. I would like to merge everything in one file. I mean, webix.css, , jquery and webix.js and my functions, layout, etc. Everything in one file.

When I do that, it seems that pro licence rights are lost. Pro functionality does not work. So, Now I am wondering if that is how it should be or is it my code that is wrong.

Everything works with separate files, but when I merge them it works but with lost functionalities. I have not included webix.js.map and webix_debug.js.

The only thing which can be affected by the file merging is a component auto-loading. ( GitHub - webix-hub/components: Third party integrations for the Webix UI )

If you are using any of them and merging the related js and css file in a single file, you need to add code like next on the page

webix.require.disabled = true;

OK. Thank you :slight_smile: