diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-06-19 19:44:40 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-06-19 19:44:40 +0200 |
commit | 856d0c991c097eff35ed098a1e30992c0f57165a (patch) | |
tree | 03c513abc945a67450e463e099c96b12c2b81769 /application/palemoon/app | |
parent | 2546ae588f7131bf2879af4ed6094a96025f1a27 (diff) | |
download | UXP-856d0c991c097eff35ed098a1e30992c0f57165a.tar UXP-856d0c991c097eff35ed098a1e30992c0f57165a.tar.gz UXP-856d0c991c097eff35ed098a1e30992c0f57165a.tar.lz UXP-856d0c991c097eff35ed098a1e30992c0f57165a.tar.xz UXP-856d0c991c097eff35ed098a1e30992c0f57165a.zip |
Issue #517 Part 1: Import newtab page from Basilisk (sans directory service provider module)
Diffstat (limited to 'application/palemoon/app')
-rw-r--r-- | application/palemoon/app/profile/palemoon.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/application/palemoon/app/profile/palemoon.js b/application/palemoon/app/profile/palemoon.js index 38559888b..b7622caa5 100644 --- a/application/palemoon/app/profile/palemoon.js +++ b/application/palemoon/app/profile/palemoon.js @@ -1056,11 +1056,18 @@ pref("browser.newtabpage.enabled", true); // XXX: Remove this when "enhanced" tiles are dead pref("browser.newtabpage.enhanced", false); +// enables showing basic placeholders for missing thumbnails +pref("browser.newtabpage.thumbnailPlaceholder", false); + +pref("browser.newtabpage.compact", false); + +pref("privacy.usercontext.about_newtab_segregation.enabled", false); + // number of columns of newtab grid pref("browser.newtabpage.columns", 4); // number of rows of newtab grid -pref("browser.newtabpage.rows", 4); +pref("browser.newtabpage.rows", 3); // Enable the DOM fullscreen API. pref("full-screen-api.enabled", true); |