mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
aa142b3c09
[server-pro] add hotfixes 4.2.5 and 5.0.5 GitOrigin-RevId: 55a138662d3c2059ce802e6a6fd70e70fd01c8cd
17 lines
639 B
Diff
17 lines
639 B
Diff
--- a/services/web/frontend/js/features/mathjax/load-mathjax.ts
|
|
+++ b/services/web/frontend/js/features/mathjax/load-mathjax.ts
|
|
@@ -36,6 +36,15 @@ export const loadMathJax = async () => {
|
|
},
|
|
startup: {
|
|
typeset: false,
|
|
+ ready() {
|
|
+ window.MathJax.startup.defaultReady()
|
|
+ const safe = window.MathJax.startup.document.safe
|
|
+ safe.filterAttributes.set('fontfamily', 'filterFontFamily')
|
|
+ safe.filterMethods.filterFontFamily = (
|
|
+ _safe: any,
|
|
+ family: string
|
|
+ ) => family.split(/;/)[0]
|
|
+ },
|
|
},
|
|
}
|