(2019-07-10, 22:28)Michael Horvath Wrote:
Do the sample files work offline too?
They do, but files are fetched asynchroneously, so opening the sample files in your browser might not work out of the box due to default security settings. To get around this you can either host the files on a local server or disable the browser checks. As an example, Chrome can be started with the following parameters in order to disable these security settings:
--disable-web-security --user-data-dir=some_directory_where_it_is_ok_that_chrome_saves_a_lot_of_files
Personally, I run a simple Python web server: "python -m SimpleHTTPServer" in the root folder of the project.