-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add minimum polyfill to support "relative-time-element" in PaleMoon (#…
…26575) (#26578) Backport #26575 by @wxiaoguang Close #26525 Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
- Loading branch information
1 parent
1cedf36
commit 1f29cfa
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
try { | ||
// some browsers like PaleMoon don't have full support for Intl.NumberFormat, so do the minimum polyfill to support "relative-time-element" | ||
// https://repo.palemoon.org/MoonchildProductions/UXP/issues/2289 | ||
new Intl.NumberFormat('en', {style: 'unit', unit: 'minute'}).format(1); | ||
} catch { | ||
const intlNumberFormat = Intl.NumberFormat; | ||
Intl.NumberFormat = function(locales, options) { | ||
if (options.style === 'unit') { | ||
return { | ||
format(value) { | ||
return ` ${value} ${options.unit}`; | ||
} | ||
}; | ||
} | ||
return intlNumberFormat(locales, options); | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
import '@webcomponents/custom-elements'; // polyfill for some browsers like Pale Moon | ||
import './polyfill.js'; | ||
|
||
import '@github/relative-time-element'; | ||
import './GiteaOriginUrl.js'; |