Merge pull request #865 from pi-hole/fix/script-outside-html

Move script tags inside html tag body
This commit is contained in:
Mark Drobnak
2018-12-10 16:48:00 -05:00
committed by GitHub
15 changed files with 46 additions and 50 deletions

View File

@@ -1383,11 +1383,11 @@ if (isset($_GET['tab']) && in_array($_GET['tab'], array("sysadmin", "blocklists"
</div>
</div>
<?php
require "scripts/pi-hole/php/footer.php";
?>
<script src="scripts/vendor/jquery.inputmask.js"></script>
<script src="scripts/vendor/jquery.inputmask.extensions.js"></script>
<script src="scripts/vendor/jquery.confirm.min.js"></script>
<script src="scripts/pi-hole/js/settings.js"></script>
<?php
require "scripts/pi-hole/php/footer.php";
?>