commit 944000c76f85a7d6261142d848ba67631876a17a parent 52ba4e6fa9fc2f667c393aad9502d32ee0189940 Author: Davide P. Cervone <dpvc@union.edu> Date: Wed, 26 Aug 2015 19:21:47 -0400 Set min-width properly on tables with labels so that they don't overlap (596). Diffstat:
| M | unpacked/jax/output/CommonHTML/autoload/mtable.js | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/unpacked/jax/output/CommonHTML/autoload/mtable.js b/unpacked/jax/output/CommonHTML/autoload/mtable.js @@ -504,7 +504,7 @@ MathJax.Hub.Register.StartupHook("CommonHTML Jax Ready",function () { // Propagate full-width equations, and reserve room for equation plus label // node.style.width = this.CHTML.pwidth = "100%"; - this.CHTML.mwidth = CHTML.Em(tw); + node.style.minWidth = this.CHTML.mwidth = CHTML.Em(tw); } });