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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-detail-sidebar.inc (-1 / +1 lines)
Lines 90-96 Link Here
90
</ul>
90
</ul>
91
91
92
<!-- Dublin Core Modal Form -->
92
<!-- Dublin Core Modal Form -->
93
<div class="modal hide" id="exportModal_" tabindex="-1" role="dialog" aria-labelledby="exportModalLabel" aria-hidden="true">
93
<div class="foo modal hide" id="exportModal_" tabindex="-1" role="dialog" aria-labelledby="exportModalLabel" aria-hidden="true">
94
    <div class="modal-header">
94
    <div class="modal-header">
95
        <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">&times;</button>
95
        <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">&times;</button>
96
        <h3 class="modal-title" id="exportModalLabel">Exporting to Dublin Core...</h3>
96
        <h3 class="modal-title" id="exportModalLabel">Exporting to Dublin Core...</h3>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-shelves.tt (-1 / +10 lines)
Lines 159-164 Link Here
159
                        </h3>
159
                        </h3>
160
160
161
                         [% IF ( itemsloop ) %]
161
                         [% IF ( itemsloop ) %]
162
                            <div id="floating">
162
                             <div id="toolbar" class="toolbar clearfix">
163
                             <div id="toolbar" class="toolbar clearfix">
163
                                 <div class="list-actions">
164
                                 <div class="list-actions">
164
                                    <a class="newshelf" href="/cgi-bin/koha/opac-shelves.pl?op=add_form">New list</a> <span class="sep">|</span>
165
                                    <a class="newshelf" href="/cgi-bin/koha/opac-shelves.pl?op=add_form">New list</a> <span class="sep">|</span>
Lines 282-287 Link Here
282
                                    [% END %]
283
                                    [% END %]
283
                                </span> <!-- / .links -->
284
                                </span> <!-- / .links -->
284
                            </div> <!-- / #selections-toolbar -->
285
                            </div> <!-- / #selections-toolbar -->
286
                            </div> <!-- /#floating -->
285
287
286
                            <form action="/cgi-bin/koha/opac-shelves.pl" method="post" id="myform" name="myform" class="checkboxed">
288
                            <form action="/cgi-bin/koha/opac-shelves.pl" method="post" id="myform" name="myform" class="checkboxed">
287
                                [% IF can_manage_shelf %]
289
                                [% IF can_manage_shelf %]
Lines 764-769 Link Here
764
[% INCLUDE 'opac-bottom.inc' %]
766
[% INCLUDE 'opac-bottom.inc' %]
765
[% BLOCK jsinclude %]
767
[% BLOCK jsinclude %]
766
[% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %]
768
[% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %]
769
[% Asset.js("lib/hc-sticky.js") | $raw %]
767
<script>
770
<script>
768
//<![CDATA[
771
//<![CDATA[
769
var MSG_REMOVE_FROM_LIST = _("Are you sure you want to remove these items from the list?");
772
var MSG_REMOVE_FROM_LIST = _("Are you sure you want to remove these items from the list?");
Lines 962-967 $(function() { Link Here
962
    [% END %]
965
    [% END %]
963
966
964
    AdjustRemark();
967
    AdjustRemark();
968
969
    Sticky = $("#floating");
970
    Sticky.hcSticky({
971
        stickTo: "#usershelves",
972
        stickyClass: "floating"
973
    });
974
965
}); // document.ready
975
}); // document.ready
966
976
967
function AdjustRemark() {
977
function AdjustRemark() {
968
- 

Return to bug 23096