Updated 2.1 User.js (markdown)

Thorin-Oakenpants 2022-01-31 02:19:34 +00:00
parent d9e77f0a26
commit 3530071d1e

@ -35,10 +35,10 @@ user_pref("browser.Startup.page", 0); // this will be applied but NOT do anythin
// two forward slashes indicate a comment
// and do not need to be closed at the end
// and only apply to the one line from when they are added
user_pref("preference.name", "value"); // comment starts at //
user_pref("pref.name.example", "value"); // comment starts at //
user_pref("preference.name", "not commented out"); // this is an ACTIVE pref and will be applied
// user_pref("preference.name", "commented out"); // this is an INACTIVE pref and will NOT be applied
user_pref("pref.name.example", "not commented out"); // this is an ACTIVE pref and will be applied
// user_pref("pref.name.example", "commented out"); // this is an INACTIVE pref and will NOT be applied
```
---