From fdd0b7787fda394bb2d1a5c5f6a4c7881b02d8bc Mon Sep 17 00:00:00 2001 From: "Davide P. Cervone" Date: Sun, 7 Feb 2016 14:11:52 -0500 Subject: [PATCH] Set some menuSettings to null so that the defaults work properly, but they still appear in the list so people know about them. --- unpacked/MathJax.js | 8 ++++---- unpacked/config/default.js | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/unpacked/MathJax.js b/unpacked/MathJax.js index f361e04fb..47f712c74 100644 --- a/unpacked/MathJax.js +++ b/unpacked/MathJax.js @@ -1889,15 +1889,15 @@ MathJax.Hub = { Shift: false, // require Shift? discoverable: false, // make math menu discoverable on hover? zscale: "200%", // the scaling factor for MathZoom - renderer: "", // set when Jax are loaded + renderer: null, // set when Jax are loaded font: "Auto", // what font HTML-CSS should use context: "MathJax", // or "Browser" for pass-through to browser menu - locale: "en", // the language to use for messages + locale: null, // the language to use for messages mpContext: false, // true means pass menu events to MathPlayer in IE mpMouse: false, // true means pass mouse events to MathPlayer in IE texHints: true, // include class names for TeXAtom elements - FastPreview: true, // use PreviewHTML output as preview? - assistiveMML: true, // include hidden MathML for screen readers? + FastPreview: null, // use PreviewHTML output as preview? + assistiveMML: null, // include hidden MathML for screen readers? inTabOrder: true, // set to false if math elements should be included in the tabindex semantics: false // add semantics tag with original form in MathML output }, diff --git a/unpacked/config/default.js b/unpacked/config/default.js index 80e91a314..b7aeae014 100644 --- a/unpacked/config/default.js +++ b/unpacked/config/default.js @@ -242,15 +242,15 @@ MathJax.Hub.Config({ Shift: false, // require Shift? discoverable: false, // make math menu discoverable on hover? zscale: "200%", // the scaling factor for MathZoom - renderer: "", // set when Jax are loaded + renderer: null, // set when Jax are loaded font: "Auto", // what font HTML-CSS should use context: "MathJax", // or "Browser" for pass-through to browser menu - locale: "en", // the language to use for messages + locale: null, // the language to use for messages mpContext: false, // true means pass menu events to MathPlayer in IE mpMouse: false, // true means pass mouse events to MathPlayer in IE texHints: true, // include class names for TeXAtom elements - FastPreview: true, // use PreviewHTML output as preview? - assistiveMML: true, // include hidden MathML for screen readers? + FastPreview: null, // use PreviewHTML output as preview? + assistiveMML: null, // include hidden MathML for screen readers? inTabOrder: true, // set to true if math elements should be included in the tabindex semantics: false // add semantics tag with original form in MathML output },