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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (+1 lines)
Lines 169-174 function verify_images() { Link Here
169
169
170
    $(document).ready(function() {
170
    $(document).ready(function() {
171
        $('#bibliodetails').tabs();
171
        $('#bibliodetails').tabs();
172
        [% IF count == 0 %]$('#bibliodetails').tabs("option", "active", 3);[% END %]
172
        $('#search-form').focus();
173
        $('#search-form').focus();
173
        $('.thumbnails > li > a > span.remove').click(function() {
174
        $('.thumbnails > li > a > span.remove').click(function() {
174
            var result = confirm(_("Are you sure you want to delete this cover image?"));
175
            var result = confirm(_("Are you sure you want to delete this cover image?"));
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt (-1 / +1 lines)
Lines 604-610 Link Here
604
                        [% END %]
604
                        [% END %]
605
605
606
                        [% IF ( HTML5MediaEnabled && HTML5MediaSets ) %]
606
                        [% IF ( HTML5MediaEnabled && HTML5MediaSets ) %]
607
                            <li id="tab_html5media"><a href="#html5media">Play media</a></li>
607
                            [% IF ( defaulttab == 'media' ) %]<li id="tab_html5media" class="ui-tabs-active">[% ELSE %]<li id="tab_html5media">[% END %]<a href="#html5media">Play media</a></li>
608
                        [% END %]
608
                        [% END %]
609
609
610
                        [% IF ( IDreamBooksReviews ) %]
610
                        [% IF ( IDreamBooksReviews ) %]
(-)a/opac/opac-detail.pl (-1 / +2 lines)
Lines 1123-1128 my $defaulttab = Link Here
1123
        ? 'serialcollection' :
1123
        ? 'serialcollection' :
1124
    $opac_serial_default eq 'holdings' && scalar (@itemloop) > 0
1124
    $opac_serial_default eq 'holdings' && scalar (@itemloop) > 0
1125
        ? 'holdings' :
1125
        ? 'holdings' :
1126
    scalar (@itemloop) == 0
1127
        ? 'media' :
1126
    $subscriptionsnumber
1128
    $subscriptionsnumber
1127
        ? 'subscriptions' :
1129
        ? 'subscriptions' :
1128
    @serialcollections > 0 
1130
    @serialcollections > 0 
1129
- 

Return to bug 16507