Fixed JS var placement causing mvn to fail

open 
open 
This commit is contained in:
Charles Hacskaylo 2015-11-03 16:51:15 -08:00
parent 903778799f
commit 2c7c7b90e6

@ -180,8 +180,10 @@ define(
// Dynamically apply a CSS class to elements when the user is actively resizing
function splitterState(state) {
var children = $element.children();
for (var i = 0; i < children.length; i++) {
var
children = $element.children(),
i;
for (i = 0; i < children.length; i++) {
children.eq(i).toggleClass('resizing');
}
}