Useful prefs: Difference between revisions

From MozillaZine Knowledge Base
Jump to navigationJump to search
No edit summary
No edit summary
Line 1: Line 1:
Add these prefs to user.js (in your [[Profile Folder | Profile]]):
Add these prefs to user.js (in your [[Profile Folder | Profile]]):


  // Disable XUL Cache (so you don't have to restart everytime you change a XUL file)
  // [[Dev : Tips : Disable XUL cache|Disable XUL cache]] (so you don't have to restart everytime you change a XUL file)
  user_pref("nglayout.debug.disable_xul_cache", true);
  user_pref("nglayout.debug.disable_xul_cache", true);



Revision as of 17:00, 27 July 2004

Add these prefs to user.js (in your Profile):

// Disable XUL cache (so you don't have to restart everytime you change a XUL file)
user_pref("nglayout.debug.disable_xul_cache", true);
// Enable dump()  (read more)
user_pref("browser.dom.window.dump.enabled", true);
// Show chrome errors in the JS console
user_pref("javascript.options.showInConsole", true);
// Enable strict JS warnings
user_pref("javascript.options.strict", true);