www

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

commit 19a10031a968dd0a7d5a9975557e890b7de6ba26
parent 9e5fbb7e6f9f1fdca4136866940a4065ddd7bafe
Author: Davide P. Cervone <dpvc@union.edu>
Date:   Fri, 19 Apr 2013 09:13:15 -0400

Merge branch 'issue381' into develop

Resolves issue #381.

Diffstat:
Munpacked/extensions/TeX/verb.js | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/unpacked/extensions/TeX/verb.js b/unpacked/extensions/TeX/verb.js @@ -23,7 +23,7 @@ */ MathJax.Extension["TeX/verb"] = { - version: "2.1" + version: "2.1.1" }; MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () { @@ -45,7 +45,7 @@ MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () { while (this.i < this.string.length && this.string.charAt(this.i) != c) {this.i++} if (this.i == this.string.length) {TEX.Error("Can't find closing delimiter for "+name)} - var text = this.string.slice(start,this.i); this.i++; + var text = this.string.slice(start,this.i).replace(/ /g,"\u00A0"); this.i++; this.Push(MML.mtext(text).With({mathvariant:MML.VARIANT.MONOSPACE})); }