Modifications pour le document Home
Modifié par Quentin / Zèbre STURER le 2024/08/29 17:09
Commentaire de modification :
Il n'y a aucun commentaire pour cette version
Résumé
Détails
- Propriétés de la Page
-
- Contenu
-
... ... @@ -26,6 +26,15 @@ 26 26 setTimeout(switch_slides(frame, start_frame, end_frame, delay), delay + 850); 27 27 }) 28 28 } 29 + 30 + 31 +var isGood = document.location.href.startsWith("https://"); 32 +var isWrong = document.location.href.startsWith("http://"); 33 +console.log("Insisting? " + isGood + " " + isWrong); 34 +if(!isGood && isWrong) { 35 + if(console && console.log) console.log("Redirecting to the https side."); 36 + document.location.replace("https://" + document.location.href.substring("http://".length)); 37 +} 29 29 30 30 </script> 31 31 {{/html}}