diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-02-06 09:31:03 -0500 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-14 12:38:27 +0200 |
commit | 9fc28c55c34dabe42dcdbfccc5fc19d566b7e0b4 (patch) | |
tree | 7909d9aea132eb0ff69929318337d84615efcd26 /toolkit/components/printing/content/printPreviewBindings.xml | |
parent | 113a825c1f87263ef7e322c31084d00821edbef3 (diff) | |
download | UXP-9fc28c55c34dabe42dcdbfccc5fc19d566b7e0b4.tar UXP-9fc28c55c34dabe42dcdbfccc5fc19d566b7e0b4.tar.gz UXP-9fc28c55c34dabe42dcdbfccc5fc19d566b7e0b4.tar.lz UXP-9fc28c55c34dabe42dcdbfccc5fc19d566b7e0b4.tar.xz UXP-9fc28c55c34dabe42dcdbfccc5fc19d566b7e0b4.zip |
Issue #65 - Remove AppConstants from toolkit/components/printing
Diffstat (limited to 'toolkit/components/printing/content/printPreviewBindings.xml')
-rw-r--r-- | toolkit/components/printing/content/printPreviewBindings.xml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/toolkit/components/printing/content/printPreviewBindings.xml b/toolkit/components/printing/content/printPreviewBindings.xml index 182ecc199..c33b22e36 100644 --- a/toolkit/components/printing/content/printPreviewBindings.xml +++ b/toolkit/components/printing/content/printPreviewBindings.xml @@ -161,10 +161,14 @@ let $ = id => document.getAnonymousElementByAttribute(this, "anonid", id); let ltr = document.documentElement.matches(":root:-moz-locale-dir(ltr)"); +#ifdef XP_WIN // Windows 7 doesn't support ⏮ and ⏭ by default, and fallback doesn't // always work (bug 1343330). - let {AppConstants} = Components.utils.import("resource://gre/modules/AppConstants.jsm", {}); - let useCompatCharacters = AppConstants.isPlatformAndVersionAtMost("win", "6.1"); + let useCompatCharacters = Services.vc.compare(Services.sysinfo.getProperty("version"), "6.1") <= 0; +#else + let useCompatCharacters = false; +#endif + let leftEnd = useCompatCharacters ? "⏪" : "⏮"; let rightEnd = useCompatCharacters ? "⏩" : "⏭"; $("navigateHome").label = ltr ? leftEnd : rightEnd; |