Skip to content

Commit

Permalink
Merge pull request #190 from mathjax/sre-path
Browse files Browse the repository at this point in the history
Fix SRE path
  • Loading branch information
dpvc authored Apr 24, 2017
2 parents 2f2d7e2 + 79d6a63 commit 415ba3c
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion dist/accessibility-menu.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/auto-collapse.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/collapsible.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/explorer.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/semantic-enrich.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion extensions/accessibility-menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
if (!PATH.a11y) PATH.a11y = HUB.config.root + "/extensions/a11y";

var Accessibility = EXTENSIONS["accessibility-menu"] = {
version: '1.2.0',
version: '1.2.1',
prefix: '', //'Accessibility-',
default: {},
modules: [],
Expand Down
2 changes: 1 addition & 1 deletion extensions/auto-collapse.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
if (!PATH.a11y) PATH.a11y = HUB.config.root + "/extensions/a11y";

var Collapse = MathJax.Extension["auto-collapse"] = {
version: "1.2.0",
version: "1.2.1",
config: HUB.CombineConfig("auto-collapse",{
disabled: false
}),
Expand Down
2 changes: 1 addition & 1 deletion extensions/collapsible.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
if (!PATH.a11y) PATH.a11y = HUB.config.root + "/extensions/a11y";

var Collapsible = MathJax.Extension.collapsible = {
version: "1.2.0",
version: "1.2.1",
config: HUB.CombineConfig("collapsible",{
disabled: false
}),
Expand Down
2 changes: 1 addition & 1 deletion extensions/explorer.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ MathJax.Hub.Register.StartupHook('Sre Ready', function() {
});

var Assistive = MathJax.Extension.explorer = {
version: '1.2.0',
version: '1.2.1',
dependents: [], // the extensions that depend on this one
//
// Default configurations.
Expand Down
4 changes: 2 additions & 2 deletions extensions/semantic-enrich.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*/

MathJax.Extension["semantic-enrich"] = {
version: "1.2.0",
version: "1.2.1",
config: MathJax.Hub.CombineConfig("semantic-enrich",{disabled: false}),
dependents: [], // the extensions that depend on this one
running: false,
Expand Down Expand Up @@ -99,7 +99,7 @@ MathJax.Extension["semantic-enrich"] = {
// Load SRE and use the signal to tell MathJax when it is loaded.
// Since SRE waits for the mml element jax, load that too.
//
if (!PATH.SRE) PATH.SRE = PATH.a11y;
if (!PATH.SRE) PATH.SRE = MathJax.Ajax.fileURL(PATH.a11y);
MathJax.Ajax.Load("[SRE]/mathjax-sre.js");
MathJax.Hub.Register.StartupHook("Sre Ready",["loadComplete",MathJax.Ajax,"[SRE]/mathjax-sre.js"]);
})();
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "MathJax-accessibility",
"version": "1.2.0",
"version": "1.2.1",
"description": "MathJax accessibility extension",
"directories": {
"test": "tests"
Expand Down

0 comments on commit 415ba3c

Please sign in to comment.