How to disbale offline support?
Please let me know which file to edit/modify to get all the latest files always from server, specially app.js
Thanks
How to disbale offline support?
Please let me know which file to edit/modify to get all the latest files always from server, specially app.js
Thanks
If you are talking about Webix Jet, there is no special offilne support. It is default behavior of requireJS
You can add something like next
<script type="text/javascript">
require.config({
urlArgs: "uid=" + (new Date()).getTime()
});
</script>