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

(-)a/koha-tmpl/intranet-tmpl/prog/en/js/pages/circulation.js (-1 / +5 lines)
Lines 8-14 $(document).ready(function() { Link Here
8
        return false;
8
        return false;
9
    });
9
    });
10
10
11
    $('#patronlists').tabs();
11
    $('#patronlists').tabs({
12
        activate: function( event, ui ) {
13
            $('#'+ui.newTab.context.id).click();
14
        }
15
    });
12
16
13
    $("#messages ul").after("<a href=\"#\" id=\"addmessage\">"+MSG_ADD_MESSAGE+"</a>");
17
    $("#messages ul").after("<a href=\"#\" id=\"addmessage\">"+MSG_ADD_MESSAGE+"</a>");
14
18
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (-1 / +3 lines)
Lines 41-46 $(document).ready(function() { Link Here
41
            if ( oTable.length > 0 ) {
41
            if ( oTable.length > 0 ) {
42
                oTable.fnAdjustColumnSizing();
42
                oTable.fnAdjustColumnSizing();
43
            }
43
            }
44
        },
45
        "activate": function( event, ui ) {
46
            $('#'+ui.newTab.context.id).click();
44
        }
47
        }
45
    } );
48
    } );
46
    $("#holdst").dataTable($.extend(true, {}, dataTablesDefaults, {
49
    $("#holdst").dataTable($.extend(true, {}, dataTablesDefaults, {
47
- 

Return to bug 11703