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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/tools-menu.inc (+2 lines)
Lines 10-15 Link Here
10
          $('#navmenulist a[href$="/cgi-bin/koha/labels/label-home.pl"]').css('font-weight','bold');
10
          $('#navmenulist a[href$="/cgi-bin/koha/labels/label-home.pl"]').css('font-weight','bold');
11
        } else if (path.indexOf("patroncards") >= 0 ) {
11
        } else if (path.indexOf("patroncards") >= 0 ) {
12
          $('#navmenulist a[href$="/cgi-bin/koha/patroncards/home.pl"]').css('font-weight','bold');
12
          $('#navmenulist a[href$="/cgi-bin/koha/patroncards/home.pl"]').css('font-weight','bold');
13
      } else if (path.indexOf("patron_lists") >= 0 ) {
14
          $('#navmenulist a[href$="/cgi-bin/koha/patron_lists/lists.pl"]').css('font-weight','bold');
13
        } else {
15
        } else {
14
          $('#navmenulist a[href$="/' + path + params + '"]').css('font-weight','bold');
16
          $('#navmenulist a[href$="/' + path + params + '"]').css('font-weight','bold');
15
        }
17
        }
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/lists.tt (-1 / +1 lines)
Lines 9-14 Link Here
9
//<![CDATA[
9
//<![CDATA[
10
    $(document).ready(function() {
10
    $(document).ready(function() {
11
        $('#patron-lists-table').dataTable($.extend(true, {}, dataTablesDefaults, {
11
        $('#patron-lists-table').dataTable($.extend(true, {}, dataTablesDefaults, {
12
            "autoWidth": false,
12
            "aoColumnDefs": [
13
            "aoColumnDefs": [
13
                { "aTargets": [ -1, -2, -3 ], "bSortable": false, "bSearchable": false },
14
                { "aTargets": [ -1, -2, -3 ], "bSortable": false, "bSearchable": false },
14
            ],
15
            ],
15
- 

Return to bug 15213