]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/defaults/preferences/evergreen.js
adding function to public schema instead of non-existant (at this point in the instal...
[Evergreen.git] / Open-ILS / xul / staff_client / defaults / preferences / evergreen.js
1 // Preferences that get set when the application is loaded
2
3 // Modified by Jason for Evergreen
4
5 // This one is required for XUL Runner
6 pref("toolkit.defaultChromeURI", "chrome://evergreen/content/main/main.xul");
7
8 // This one just makes things speedier.  We use a lot of XMLHttpRequest
9 pref("network.http.max-persistent-connections-per-server",8);
10
11 // This stops the unresponsive script warning, but the code is still too slow for some reason.
12 // However, it's better than POEM, which I wasted a day on :)
13 pref("dom.max_script_run_time",60);
14
15 pref("javascript.options.strict",false);
16 pref("javascript.options.showInConsole",true);
17
18 // This lets remote xul access link to local chrome
19 pref("security.checkloaduri", false);
20 pref("signed.applets.codebase_principal_support", true);
21