www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 9531b299d4b01f8d02e90473532bef04a3afcf17
parent 55df93cdf8eb06d132613266f4ab8ca1d099f98a
Author: Davide P. Cervone <dpvc@union.edu>
Date:   Sun,  1 Feb 2015 15:35:00 -0500

Make sure children of mtable are mtr or mlabeledtr (was incorrectly making an mtd instead of an mtr).  Resolves issues #1006 and #1032.

Diffstat:
Munpacked/jax/element/mml/jax.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/unpacked/jax/element/mml/jax.js b/unpacked/jax/element/mml/jax.js @@ -1177,7 +1177,7 @@ MathJax.ElementJax.mml.Augment({ Append: function () { for (var i = 0, m = arguments.length; i < m; i++) { if (!((arguments[i] instanceof MML.mtr) || - (arguments[i] instanceof MML.mlabeledtr))) {arguments[i] = MML.mtd(arguments[i])} + (arguments[i] instanceof MML.mlabeledtr))) {arguments[i] = MML.mtr(arguments[i])} } this.SUPER(arguments).Append.apply(this,arguments); },