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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/doc-head-close.inc (-2 / +1 lines)
Lines 51-63 Link Here
51
[% IF ( bidi ) %]
51
[% IF ( bidi ) %]
52
    <link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/right-to-left.css" />
52
    <link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/right-to-left.css" />
53
[% END %]
53
[% END %]
54
[% IF ( OPACUserCSS ) %]<style type="text/css">[% OPACUserCSS %]</style>[% END %]
54
[% IF SCO_login %]
55
[% IF SCO_login %]
55
    [% SET SCOUserCSS = Koha.Preference('SCOUserCSS') %]
56
    [% SET SCOUserCSS = Koha.Preference('SCOUserCSS') %]
56
    [% IF SCOUserCSS %]
57
    [% IF SCOUserCSS %]
57
        <style type="text/css">[% SCOUserCSS %]</style>
58
        <style type="text/css">[% SCOUserCSS %]</style>
58
    [% END %]
59
    [% END %]
59
[% ELSE %]
60
    [% IF ( OPACUserCSS ) %]<style type="text/css">[% OPACUserCSS %]</style>[% END %]
61
[% END %]
60
[% END %]
62
<link rel="unapi-server" type="application/xml" title="unAPI" href="[% OPACBaseURL %]/cgi-bin/koha/unapi" />
61
<link rel="unapi-server" type="application/xml" title="unAPI" href="[% OPACBaseURL %]/cgi-bin/koha/unapi" />
63
[% PROCESS cssinclude %]
62
[% PROCESS cssinclude %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-bottom.inc (-9 / +7 lines)
Lines 266-271 $(document).ready(function() { Link Here
266
});
266
});
267
</script>
267
</script>
268
[% PROCESS jsinclude %]
268
[% PROCESS jsinclude %]
269
[% IF ( OPACUserJS ) %]
270
    <script type="text/javascript">
271
        //<![CDATA[
272
        [% OPACUserJS %]
273
        //]]>
274
    </script>
275
[% END %]
269
[% IF SCO_login %]
276
[% IF SCO_login %]
270
    [% SET SCOUserJS = Koha.Preference('SCOUserJS') %]
277
    [% SET SCOUserJS = Koha.Preference('SCOUserJS') %]
271
    [% IF ( SCOUserJS ) %]
278
    [% IF ( SCOUserJS ) %]
Lines 275-288 $(document).ready(function() { Link Here
275
            //]]>
282
            //]]>
276
        </script>
283
        </script>
277
    [% END %]
284
    [% END %]
278
[% ELSE %]
279
    [% IF ( OPACUserJS ) %]
280
        <script type="text/javascript">
281
            //<![CDATA[
282
            [% OPACUserJS %]
283
            //]]>
284
        </script>
285
    [% END %]
286
[% END %]
285
[% END %]
287
</body>
286
</body>
288
</html>
287
</html>
289
- 

Return to bug 12663