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