Bug 22753: Fix hold priority adjustment, move to top
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / includes / installer-intranet-bottom.inc
1 [% USE raw %]
2 [% USE Asset %]
3         [% Asset.js("lib/jquery/jquery-2.2.3.min.js") | $raw %]
4         [% Asset.js("lib/jquery/jquery-migrate-1.3.0.min.js") | $raw %]
5         [% Asset.js("lib/jquery/jquery-ui-1.11.4.min.js") | $raw %]
6         [% Asset.js("lib/bootstrap/bootstrap.min.js") | $raw %]
7         [% Asset.js("lib/jquery/plugins/jquery.validate.min.js") | $raw %]
8         <script>
9             function _(s) { return s } // dummy function for gettext
10             [%# Prevent XFS attacks -%]
11             $(document).ready(function() {
12                if (self === top) {
13                    var antiClickjack = document.getElementById("antiClickjack");
14                    antiClickjack.parentNode.removeChild(antiClickjack);
15                } else {
16                    top.location = self.location;
17                }
18             });
19         </script>
20         [% jsinclude | $raw # Parse the page template's JavaScript block if necessary %]
21     </body>
22 </html>