www

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

commit e4982cb7036751d2d310df3773fdfa31597a29a9
parent 714b9702fad1b5353a86b20595bec53d7fe8a416
Author: Davide P. Cervone <dpvc@union.edu>
Date:   Thu, 29 Jan 2015 10:32:36 -0500

Fix unneeded variable (noted by YUI compression)

Diffstat:
Munpacked/jax/output/HTML-CSS/autoload/multiline.js | 4++--
Munpacked/jax/output/SVG/autoload/multiline.js | 4++--
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/unpacked/jax/output/HTML-CSS/autoload/multiline.js b/unpacked/jax/output/HTML-CSS/autoload/multiline.js @@ -536,8 +536,8 @@ MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function () { // // Get the current breakpoint position and other data // - var index = info.index.slice(0), i = info.index.shift(), - W, w, scanW, broken = (info.index.length > 0), better = false; + var index = info.index.slice(0); info.index.shift(); + var W, w, scanW, broken = (info.index.length > 0), better = false; if (!broken) {info.W += info.w; info.w = 0} info.scanW = info.W; // diff --git a/unpacked/jax/output/SVG/autoload/multiline.js b/unpacked/jax/output/SVG/autoload/multiline.js @@ -489,8 +489,8 @@ MathJax.Hub.Register.StartupHook("SVG Jax Ready",function () { // // Get the current breakpoint position and other data // - var index = info.index.slice(0), i = info.index.shift(), - W, w, scanW, broken = (info.index.length > 0), better = false; + var index = info.index.slice(0); info.index.shift(); + var W, w, scanW, broken = (info.index.length > 0), better = false; if (!broken) {info.W += info.w; info.w = 0} info.scanW = info.W; //