-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Workaround for bidi related mojibake in Edge #8
- Loading branch information
Showing
4 changed files
with
38 additions
and
9 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,11 @@ | ||
--- build/l20n/l20n.js | ||
+++ build/l20n/l20n.js | ||
@@ -5063,7 +5063,7 @@ function getMeta(head) { | ||
// used to create new `MessageContext` objects for a given `lang` with selected | ||
// builtin functions. | ||
function createContext(lang) { | ||
- return new MessageContext(lang); | ||
+ return new MessageContext(lang, { "useIsolating": false }); | ||
} | ||
|
||
// Called for every named Localization declared via <link name=…> elements. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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