| Current Path : /home/happyrenas/myreco.online/administration/panel/includes/ |
Linux webd005.cluster105.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 |
| Current File : /home/happyrenas/myreco.online/administration/panel/includes/end.php |
<script>
$(document).ready(function() {
//Our custom function.
function send(){
$.ajax({
type: "get",
url: "_keepalive.php",
success:function(data)
{
//console.log the response
console.log(data);
//Send another request in 10 seconds.
setTimeout(function(){
send();
}, 60000);
}
});
}
//Call our function
send();
////////////////
//SWITCH PANEL GAUCHE//
////////////////
$('.theme_centrage').on('change.bootstrapSwitch', function(e) {
var reponse=e.target.checked;
console.log(reponse);
if (reponse==true) {var theme_centrage="oui";}
if (reponse==false) {var theme_centrage="non";}
var url = new URL(window.location.href);
url.searchParams.set('theme_centrage',theme_centrage);
window.location.href = url.href;
});
$('.theme_sombre').on('change.bootstrapSwitch', function(e) {
var reponse=e.target.checked;
console.log(reponse);
if (reponse==true) {var theme_sombre="oui";}
if (reponse==false) {var theme_sombre="non";}
var url = new URL(window.location.href);
url.searchParams.set('theme_sombre',theme_sombre);
window.location.href = url.href;
});
});
</script>