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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-collection.tt (-3 / +2 lines)
Lines 380-392 Link Here
380
            $(".CheckAll").on("click", function(e){
380
            $(".CheckAll").on("click", function(e){
381
                e.preventDefault();
381
                e.preventDefault();
382
                var years = $(this).data("year");
382
                var years = $(this).data("year");
383
                $("#subscription-year-" + years + " input:checkbox").prop("checked", true );
383
                $("#subscription-year-" + years + "_panel" + " input:checkbox").prop("checked", true );
384
            });
384
            });
385
385
386
            $(".CheckNone").on("click", function(e){
386
            $(".CheckNone").on("click", function(e){
387
                e.preventDefault();
387
                e.preventDefault();
388
                var years = $(this).data("year");
388
                var years = $(this).data("year");
389
                $("#subscription-year-" + years + " input:checkbox").prop("checked", false );
389
                $("#subscription-year-" + years + "_panel" + " input:checkbox").prop("checked", false );
390
            });
390
            });
391
391
392
            $(".generatenext").on("click", function(e){
392
            $(".generatenext").on("click", function(e){
393
- 

Return to bug 33590