View | Details | Raw Unified | Return to bug 8028
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt (-2 / +1 lines)
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
- 

Return to bug 8028