www

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

commit e3a26033618acab652315058e98ea80ba5a3388e
parent f60da6ff0e7938bf3946be7e5cc3e4f17b1010db
Author: Davide P. Cervone <dpvc@union.edu>
Date:   Tue,  8 Dec 2015 18:06:50 -0500

Merge branch 'issue1312' into develop.  Issue #1312.

Diffstat:
Munpacked/jax/input/TeX/jax.js | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/unpacked/jax/input/TeX/jax.js b/unpacked/jax/input/TeX/jax.js @@ -343,7 +343,8 @@ type: "fn", checkItem: function (item) { if (this.data[0]) { - if (item.type !== "fn" && item.type !== "left") { + if (item.isOpen) {return true} + if (item.type !== "fn") { if (item.type !== "mml" || !item.data[0]) {return [this.data[0],item]} if (item.data[0].isa(MML.mspace)) {return [this.data[0],item]} var mml = item.data[0]; if (mml.isEmbellished()) {mml = mml.CoreMO()}