From b5d6f312529509fc821f21f5d3b044376d56c583 Mon Sep 17 00:00:00 2001 From: "Davide P. Cervone" Date: Fri, 21 Aug 2015 07:46:01 -0400 Subject: [PATCH] Add missind 'node' to CHTMLstretchH() call. --- unpacked/jax/output/CommonHTML/jax.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unpacked/jax/output/CommonHTML/jax.js b/unpacked/jax/output/CommonHTML/jax.js index ebe0dc035..7cbcd6b39 100644 --- a/unpacked/jax/output/CommonHTML/jax.js +++ b/unpacked/jax/output/CommonHTML/jax.js @@ -1599,7 +1599,7 @@ return this.CHTML; }, CHTMLstretchH: function (node,w) { - this.Core().CHTMLstretchH(w); + this.Core().CHTMLstretchH(node,w); this.toCommonHTML(node,true); return this.CHTML; }