xulrunner/app/xulrunner.js

Wed, 31 Dec 2014 07:22:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:22:50 +0100
branch
TOR_BUG_3246
changeset 4
fc2d59ddac77
permissions
-rw-r--r--

Correct previous dual key logic pending first delivery installment.

     1 /* This Source Code Form is subject to the terms of the Mozilla Public
     2  * License, v. 2.0. If a copy of the MPL was not distributed with this
     3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     5 #filter substitution
     7 // We need to override the default values of these preferences since all.js
     8 // assumes these are in the navigator package, which for us is nonexistent.
     9 // XXX(darin): perhaps all.js should not be seamonkey specific
    10 pref("general.useragent.locale", "@AB_CD@");
    11 pref("xpinstall.dialog.confirm", "chrome://mozapps/content/xpinstall/xpinstallConfirm.xul");
    12 pref("xpinstall.dialog.progress.chrome", "chrome://mozapps/content/extensions/extensions.xul");
    13 pref("xpinstall.dialog.progress.skin", "chrome://mozapps/content/extensions/extensions.xul");
    14 pref("xpinstall.dialog.progress.type.chrome", "Extension:Manager");
    15 pref("xpinstall.dialog.progress.type.skin", "Extension:Manager");
    16 pref("xpinstall.enabled", true);
    17 #ifdef XP_WIN
    18 pref("browser.preferences.instantApply", false);
    19 #else
    20 pref("browser.preferences.instantApply", true);
    21 #endif
    22 #ifdef XP_MACOSX
    23 pref("browser.preferences.animateFadeIn", true);
    24 #else
    25 pref("browser.preferences.animateFadeIn", false);
    26 #endif

mercurial