Josef Moravec
f1c150c98f
Test plan: Use installer and onboaarding tool, make sure the js and css files are loaded Signed-off-by: Hayley Mapley <hayleymapley@catalyst.net.nz> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
22 lines
963 B
PHP
22 lines
963 B
PHP
[% USE raw %]
|
|
[% USE Asset %]
|
|
[% Asset.js("lib/jquery/jquery-2.2.3.min.js") | $raw %]
|
|
[% Asset.js("lib/jquery/jquery-migrate-1.3.0.min.js") | $raw %]
|
|
[% Asset.js("lib/jquery/jquery-ui-1.11.4.min.js") | $raw %]
|
|
[% Asset.js("lib/bootstrap/bootstrap.min.js") | $raw %]
|
|
[% Asset.js("lib/jquery/plugins/jquery.validate.min.js") | $raw %]
|
|
<script>
|
|
function _(s) { return s } // dummy function for gettext
|
|
[%# Prevent XFS attacks -%]
|
|
$(document).ready(function() {
|
|
if (self === top) {
|
|
var antiClickjack = document.getElementById("antiClickjack");
|
|
antiClickjack.parentNode.removeChild(antiClickjack);
|
|
} else {
|
|
top.location = self.location;
|
|
}
|
|
});
|
|
</script>
|
|
[% jsinclude | $raw # Parse the page template's JavaScript block if necessary %]
|
|
</body>
|
|
</html>
|