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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/intranetstylesheet.inc (-1 / +1 lines)
Lines 1-4 Link Here
1
[% SET intranetstylesheet='staff-global.css' UNLESS intranetstylesheet %]
1
[% SET intranetstylesheet='staff-global_' _ KOHA_VERSION _ '.css' UNLESS intranetstylesheet %]
2
[% IF (intranetstylesheet.match('^https?:|^\/')) %]
2
[% IF (intranetstylesheet.match('^https?:|^\/')) %]
3
    <link rel="stylesheet" type="text/css" href="[% intranetstylesheet %]" />
3
    <link rel="stylesheet" type="text/css" href="[% intranetstylesheet %]" />
4
[% ELSE %]
4
[% ELSE %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/doc-head-close.inc (-1 / +1 lines)
Lines 14-20 Link Here
14
    <link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/lib/jquery/jquery-ui_[% KOHA_VERSION %].css" />
14
    <link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/lib/jquery/jquery-ui_[% KOHA_VERSION %].css" />
15
[% END %]
15
[% END %]
16
16
17
[% SET opaclayoutstylesheet='opac.css' UNLESS opaclayoutstylesheet %]
17
[% SET opaclayoutstylesheet='opac_' _ KOHA_VERSION _ '.css' UNLESS opaclayoutstylesheet %]
18
[% IF (opaclayoutstylesheet.match('^https?:|^\/')) %]
18
[% IF (opaclayoutstylesheet.match('^https?:|^\/')) %]
19
    <link rel="stylesheet" type="text/css" href="[% opaclayoutstylesheet %]" />
19
    <link rel="stylesheet" type="text/css" href="[% opaclayoutstylesheet %]" />
20
[% ELSE %]
20
[% ELSE %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-bottom.inc (-4 / +3 lines)
Lines 90-100 $.widget.bridge('uitooltip', $.ui.tooltip); Link Here
90
        // Test need for polyfill
90
        // Test need for polyfill
91
        {
91
        {
92
            test: window.matchMedia,
92
            test: window.matchMedia,
93
            nope: "[% interface %]/[% theme %]/lib/media.match.min.js"
93
            nope: "[% interface %]/[% theme %]/lib/media.match.min_[% KOHA_VERSION %].js"
94
        },
94
        },
95
        // and then load enquire
95
        // and then load enquire
96
        "[% interface %]/[% theme %]/lib/enquire.min.js",
96
        "[% interface %]/[% theme %]/lib/enquire.min_[% KOHA_VERSION %].js",
97
        "[% interface %]/[% theme %]/js/script.js"
97
        "[% interface %]/[% theme %]/js/script_[% KOHA_VERSION %].js"
98
    ]);
98
    ]);
99
99
100
    // Fix for datepicker in a modal
100
    // Fix for datepicker in a modal
101
- 

Return to bug 12904