www

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

commit d70612a519144a18599cdff0741a9fa8587c4a66
parent bcdb2f104842371920e70ff4a6aa822f0ae4becc
Author: Davide P. Cervone <dpvc@union.edu>
Date:   Tue, 14 Jul 2015 14:35:02 -0400

Don't need to add extra mtd for tags any longer.

Diffstat:
Munpacked/extensions/TeX/AMSmath.js | 14--------------
1 file changed, 0 insertions(+), 14 deletions(-)

diff --git a/unpacked/extensions/TeX/AMSmath.js b/unpacked/extensions/TeX/AMSmath.js @@ -571,22 +571,8 @@ MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () { var def = { side: TEX.config.TagSide, minlabelspacing: TEX.config.TagIndent, - columnalign: mml.displayAlign, displaystyle: "inherit" // replaced by TeX input jax Translate() function with actual value }; - if (mml.displayAlign === MML.INDENTALIGN.LEFT) { - def.width = "100%"; - if (mml.displayIndent !== "0") { - def.columnwidth = mml.displayIndent + " fit"; def.columnspacing = "0" - row = [row[0],MML.mtd(),row[1]]; - } - } else if (mml.displayAlign === MML.INDENTALIGN.RIGHT) { - def.width = "100%"; - if (mml.displayIndent !== "0") { - def.columnwidth = "fit "+mml.displayIndent; def.columnspacing = "0" - row[2] = MML.mtd(); - } - } mml = MML.mtable(MML.mlabeledtr.apply(MML,row)).With(def); } return STACKITEM.mml(mml);