Skip to content

Commit dd5c189

Browse files
committed
Merge branch 'develop' into feature/tsdoc
2 parents 5b7af3f + 4d1e195 commit dd5c189

File tree

4 files changed

+22
-16
lines changed

4 files changed

+22
-16
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mathjax/src",
3-
"version": "4.0.0-rc.3",
3+
"version": "4.0.0-rc.4",
44
"description": "Beautiful and accessible math in all browsers. MathJax is an open-source JavaScript display engine for LaTeX, MathML, and AsciiMath notation that works in all browsers and in server-side node applications. This package includes the source code as well as the packaged components.",
55
"keywords": [
66
"MathJax",
@@ -168,9 +168,9 @@
168168
]
169169
},
170170
"dependencies": {
171-
"@mathjax/mathjax-newcm-font": "4.0.0-rc.3",
171+
"@mathjax/mathjax-newcm-font": "4.0.0-rc.4",
172172
"mhchemparser": "^4.2.1",
173173
"mj-context-menu": "^0.9.1",
174-
"speech-rule-engine": "5.0.0-alpha.7"
174+
"speech-rule-engine": "5.0.0-alpha.8"
175175
}
176176
}

pnpm-lock.yaml

Lines changed: 17 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ts/components/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
* @author [email protected] (Davide Cervone)
2323
*/
2424

25-
export const VERSION = '4.0.0-rc.3';
25+
export const VERSION = '4.0.0-rc.4';

ts/ui/menu/Menu.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1059,7 +1059,7 @@ export class Menu {
10591059
settings.speechRules = `${sre.domain || 'clearspeak'}-${sre.style || 'default'}`;
10601060
}
10611061
if (renderer !== this.defaultSettings.renderer) {
1062-
this.setRenderer(renderer, false);
1062+
this.document.whenReady(() => this.setRenderer(renderer, false));
10631063
}
10641064
});
10651065
}

0 commit comments

Comments
 (0)