Lines 51-57
Link Here
|
51 |
|
51 |
|
52 |
rowCountPending = $("#pendingt tbody.filterclass tr").length; |
52 |
rowCountPending = $("#pendingt tbody.filterclass tr").length; |
53 |
rowCountReceived = $("#receivedt tbody.filterclass tr").length; |
53 |
rowCountReceived = $("#receivedt tbody.filterclass tr").length; |
54 |
if (rowCountPending > rowsToCollapse && $.cookie("pendingKeepExpanded") != 1 ) { pendingCollapse(); } |
54 |
if (rowCountPending > rowsToCollapse ) { if ( $.cookie("pendingKeepExpanded") != 1 ) { pendingCollapse(); } else { pendingExpand(); } } |
55 |
if (rowCountReceived > rowsToCollapse ) { if ( $.cookie("receivedKeepExpanded") != 1 ) { receivedCollapse(); } else { receivedExpand(); } } |
55 |
if (rowCountReceived > rowsToCollapse ) { if ( $.cookie("receivedKeepExpanded") != 1 ) { receivedCollapse(); } else { receivedExpand(); } } |
56 |
}); |
56 |
}); |
57 |
|
57 |
|
58 |
- |
|
|