You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var search_params = new URLSearchParams(url.search);
if(search_params.has('code')) {
var code = search_params.get('code');
if(!search_params.has('JavaScript')){
$("#docu").html("<p style=\"background-color:green\">Pour des Raisons de sécurité, JavaScript n'est pas Activé. <a href=\""+str+"&JavaScript=true\">Javascript ?</a></p><br>"+code);
}else {
$("#docu").html(code);
if(search_params.has('script')){
var Script = search_params.get('script');
$.getScript(Script);
}else{
alert("Impossible de charger JavaScript : Aucun Script");