add SBIX fallback twemoji font

pull/21833/head
Matthew Hodgson 2019-06-02 04:24:36 +01:00
parent 7a4d69f037
commit caa950f625
2 changed files with 8 additions and 1 deletions

Binary file not shown.

View File

@ -115,6 +115,13 @@ export async function fixupColorFonts() {
document.fonts.add(new FontFace("Twemoji", path, { weight: 600 }));
document.fonts.add(new FontFace("Twemoji", path, { weight: 700 }));
}
// if not supported, the browser will fall back to one of the native fonts specified.
else {
// fall back to SBIX, generated via https://github.com/matrix-org/twemoji-colr/tree/matthew/sbix
const path = `url('${require("../../res/fonts/Twemoji_Mozilla/TwemojiMozilla-sbix.woff2")}')`;
document.fonts.add(new FontFace("Twemoji", path, {}));
document.fonts.add(new FontFace("Twemoji", path, { weight: 600 }));
document.fonts.add(new FontFace("Twemoji", path, { weight: 700 }));
}
// ...and if SBIX is not supported, the browser will fall back to one of the native fonts specified.
}