From 2cdbf46bd9f545816284662f24b66a424f55b6d2 Mon Sep 17 00:00:00 2001 From: "Davide P. Cervone" Date: Mon, 22 Aug 2016 07:31:13 -0400 Subject: [PATCH] Commit 65cfcb wasn't a complete solution to the stretchy change. --- unpacked/jax/output/CommonHTML/autoload/mmultiscripts.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/unpacked/jax/output/CommonHTML/autoload/mmultiscripts.js b/unpacked/jax/output/CommonHTML/autoload/mmultiscripts.js index 3fd1239c6..c1477f2b6 100644 --- a/unpacked/jax/output/CommonHTML/autoload/mmultiscripts.js +++ b/unpacked/jax/output/CommonHTML/autoload/mmultiscripts.js @@ -31,7 +31,8 @@ MathJax.Hub.Register.StartupHook("CommonHTML Jax Ready",function () { MML.mmultiscripts.Augment({ toCommonHTML: function (node,options) { - if (!options || !options.stretch) { + var stretch = (options||{}).stretch; + if (!stretch) { node = this.CHTMLcreateNode(node); this.CHTMLhandleStyle(node); this.CHTMLhandleScale(node);