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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/discrete_calendar.tt (-2 / +2 lines)
Lines 666-672 Link Here
666
666
667
            $("#holidayweeklyrepeatable>tbody>tr").each(function() {
667
            $("#holidayweeklyrepeatable>tbody>tr").each(function() {
668
                var first_td = $(this).find('td').first();
668
                var first_td = $(this).find('td').first();
669
                first_td.html(weekdays[first_td.html()]);
669
                var date_index = parseInt(first_td.html()) - 1;
670
                first_td.html(weekdays[date_index]);
670
            });
671
            });
671
            $("#holidayweeklyrepeatable").dataTable($.extend(true, {}, dataTablesDefaults, {
672
            $("#holidayweeklyrepeatable").dataTable($.extend(true, {}, dataTablesDefaults, {
672
                "sDom": 't',
673
                "sDom": 't',
673
- 

Return to bug 17015