Add some CSS during column resize to indicate which columns are fixed and which columns will change when you resize.

This commit is contained in:
Nathan Gray
2014-09-09 17:39:33 +00:00
parent 108d3a0f40
commit c33a71c5f7
3 changed files with 19 additions and 2 deletions

View File

@ -53,6 +53,9 @@
};
}
// Indicate resizing is in progress
$j(_outerElem).addClass('egwResizing');
// Reset the "didResize" flag
didResize = false;
@ -78,7 +81,7 @@
})
.bind("mouseup", function() {
stopResize();
stopResize(_outerElem);
// Reset text selection
_elem[0].onselectstart = null;
@ -93,8 +96,10 @@
}
}
function stopResize()
function stopResize(_outerElem)
{
$j(_outerElem).removeClass('egwResizing');
if (helper != null)
{
helper.remove();