Is there a way to configure firefox using about: config to allow access to the local file (for demo purposes)?
In particular, using FF12, I need to have access to a local file for json data. It works fine on the server, but I would like to make this demo more portable.
$.ajax({ url: "../_assets/levelschema.json", complete: function (data) { Levels = data.levels;
I tried to set it not async = false, but I get an error "Access to restricted URI". This is a safety feature. I really need a demo to work offline, without Internet access, and I would prefer that people using it should not have to install a web server. I would also prefer not to include all my data in HTML tags, as this data is subject to change.
source share