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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt (-2 / +2 lines)
Lines 67-72 function placeHold () { Link Here
67
}
67
}
68
68
69
	$(document).ready(function(){
69
	$(document).ready(function(){
70
                $("#items-popover").popover();
70
		$("#CheckAll").click(function(){
71
		$("#CheckAll").click(function(){
71
		var checked = [];
72
		var checked = [];
72
		$("#bookbag_form").checkCheckboxes("*", true).each(
73
		$("#bookbag_form").checkCheckboxes("*", true).each(
Lines 355-361 function placeHold () { Link Here
355
	    [% UNLESS ( print_basket ) %]<th>&nbsp;</th>[% END %]
356
	    [% UNLESS ( print_basket ) %]<th>&nbsp;</th>[% END %]
356
	    <th>Title</th>
357
	    <th>Title</th>
357
        <th>Item type</th>
358
        <th>Item type</th>
358
        <th>Items</th>
359
        <th><a id="items-popover" href="#" data-trigger="hover" data-toggle="popover" data-placement="top" title="Item sorting" data-content="Items are sorted by the highest or lowest callnumber in a group of items respectively.">Items</a></th>
359
        </tr></thead>
360
        </tr></thead>
360
361
361
        [% FOREACH BIBLIO_RESULT IN BIBLIO_RESULTS %]
362
        [% FOREACH BIBLIO_RESULT IN BIBLIO_RESULTS %]
362
- 

Return to bug 9456