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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc (+1 lines)
Lines 12-17 Link Here
12
        <div class="navbar navbar-inverse navbar-static-top">
12
        <div class="navbar navbar-inverse navbar-static-top">
13
            <div class="navbar-inner">
13
            <div class="navbar-inner">
14
                <div class="container-fluid">
14
                <div class="container-fluid">
15
                    <button id="scrolltocontent" class="sr-only sr-only-focusable pull-left">Skip to main content</button>
15
                    <h1 id="logo">
16
                    <h1 id="logo">
16
                        <a class="brand" href="/cgi-bin/koha/opac-main.pl">
17
                        <a class="brand" href="/cgi-bin/koha/opac-main.pl">
17
                            [% IF ( LibraryNameTitle ) %]
18
                            [% IF ( LibraryNameTitle ) %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/js/global.js (-1 / +6 lines)
Lines 91-93 function confirmModal(message, title, yes_label, no_label, callback) { Link Here
91
    $("#bootstrap-confirm-box-modal-cancel").text( no_label || 'Cancel' );
91
    $("#bootstrap-confirm-box-modal-cancel").text( no_label || 'Cancel' );
92
    $("#bootstrap-confirm-box-modal").modal('show');
92
    $("#bootstrap-confirm-box-modal").modal('show');
93
}
93
}
94
- 
94
95
$("#scrolltocontent").click(function() {
96
    $('html,body').animate({
97
        scrollTop: $(".maincontent").offset().top},
98
    'slow');
99
});

Return to bug 22807