commit 29efa89877444b1a256c23e662641b90feb840da
parent d786c11add1b9c28500bb0a2c1e461c6c911db6f
Author: Davide P. Cervone <dpvc@union.edu>
Date: Fri, 13 Mar 2015 13:12:12 -0400
Fix computation of depths to not use width as the default (oops).
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/unpacked/jax/output/CommonHTML/jax.js b/unpacked/jax/output/CommonHTML/jax.js
@@ -1249,7 +1249,7 @@
child.style.width = 0; child.style.margin = CHTML.Em(-h)+" 0 "+CHTML.Em(-d);
if (values.width !== "") w = this.CHTMLdimen(values.width,"w",w,0);
if (values.height !== "") h = this.CHTMLdimen(values.height,"h",h,0);
- if (values.depth !== "") d = this.CHTMLdimen(values.depth,"d",w,0);
+ if (values.depth !== "") d = this.CHTMLdimen(values.depth,"d",d,0);
if (values.voffset !== "") {
y = this.CHTMLdimen(values.voffset);
if (y) {