fix(web): 🐛 extract inline tpl redirect script to not be blocked by csp

This commit is contained in:
Collin M. Barrett 2021-01-24 12:49:15 -06:00
parent 4be18238cd
commit 44bae636a7
2 changed files with 4 additions and 5 deletions

View file

@ -11,11 +11,7 @@
<![endif]-->
<!-- For IE > 9 -->
<script type="text/javascript">
if (window.navigator.msPointerEnabled) {
window.location = "https://filterlists.com/tpl.html";
}
</script>
<script src="tpl-redirect.js"></script>
<link
rel="shortcut icon"

View file

@ -0,0 +1,3 @@
if (window.navigator.msPointerEnabled) {
window.location = "https://filterlists.com/tpl.html";
}