www

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

commit 1092de83de0cfc77be82b70dcc2cc1fe8c6b75e7
parent aacd4287b6ca26baf8bba1da342f47365db4a37e
Author: Davide P. Cervone <dpvc@union.edu>
Date:   Fri, 14 Mar 2014 14:35:30 -0400

Merge remote-tracking branch 'dpvc/font-fixes' into develop.

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

diff --git a/unpacked/jax/output/HTML-CSS/jax.js b/unpacked/jax/output/HTML-CSS/jax.js @@ -105,7 +105,8 @@ // var family = font.familyFixed || font.family; if (!family.match(/^(STIX|MathJax)|'/)) { - family = family.replace(/_/g," ").replace(/([a-z])([A-Z])/g,"$1 $2") + "','" + family + "-"; + family = family.replace(/_/g," ").replace(/([a-z])([A-Z])/g,"$1 $2").replace(/ Jax/,"Jax") + + "','" + family + "','" + family + "-"; if (font.weight) {family += "Bold"}; if (font.style) {family += "Italic"} if (!font.weight && !font.style) {family += "Regular"} font.familyFixed = family = "'"+family+"'"