mirror of
https://github.com/nasa/openmct.git
synced 2025-06-11 20:01:41 +00:00
@ -180,8 +180,10 @@ define(
|
|||||||
|
|
||||||
// Dynamically apply a CSS class to elements when the user is actively resizing
|
// Dynamically apply a CSS class to elements when the user is actively resizing
|
||||||
function splitterState(state) {
|
function splitterState(state) {
|
||||||
var children = $element.children();
|
var
|
||||||
for (var i = 0; i < children.length; i++) {
|
children = $element.children(),
|
||||||
|
i;
|
||||||
|
for (i = 0; i < children.length; i++) {
|
||||||
children.eq(i).toggleClass('resizing');
|
children.eq(i).toggleClass('resizing');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user