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
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
- 

Return to bug 8028