Fix a problem with SVG linebreaking where the lines would get farther and farther apart when there are multiple breaks within an equation.

This commit is contained in:
Davide P. Cervone 2012-10-01 16:56:20 -04:00
parent bcf7ad1807
commit ca34855b25
2 changed files with 2 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@ -219,8 +219,7 @@ MathJax.Hub.Register.StartupHook("SVG Jax Ready",function () {
//
// Save the values needed for the future
//
state.d = line.d-(line.y||0);
state.values = values; state.n++;
state.d = line.d; state.values = values; state.n++;
},
/****************************************************************/