Maintenant, tout dans le executor.php. Fin de tempPreMega.
Ajout d'un super simulateur de tours de Monoï dans la page 404.
This commit is contained in:
+28
-4
@@ -3,9 +3,16 @@
|
||||
<meta name="keywords" lang="fr" content="cercloid officiel, zeidhyx project" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<link rel="stylesheet" href="css/style.css" />
|
||||
<script type="text/x-mathjax-config"> MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}}); </script>
|
||||
<script type="text/javascript" async src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_CHTML"> </script>
|
||||
|
||||
<script type="text/x-mathjax-config"> MathJax.Hub.Config({
|
||||
tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]},
|
||||
CommonHTML: { linebreaks: { automatic: true }, scale: ((window.innerWidth || document.body.clientWidth)<600)?70:100},
|
||||
"HTML-CSS": { linebreaks: { automatic: true } },
|
||||
SVG: { linebreaks: { automatic: true } }});
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
var headBloc = document.getElementsByTagName("head")[0];
|
||||
//Load css according to the browser
|
||||
var link = document.createElement( "link" );
|
||||
link.type = "text/css";
|
||||
link.rel = "stylesheet";
|
||||
@@ -15,5 +22,22 @@
|
||||
}else{
|
||||
link.href = "css/noFirefoxStyle.css";
|
||||
}
|
||||
document.getElementsByTagName("head")[0].appendChild( link );
|
||||
</script>
|
||||
headBloc.appendChild( link );
|
||||
|
||||
//Load server jQuery if not loaded
|
||||
var jQuerySrc = 'https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_CHTML'
|
||||
var mathJaxSrc = 'http://code.jquery.com/jquery-latest.min.js'
|
||||
if(!navigator.onLine){
|
||||
jQuerySrc = 'includes/jquery-latest.min.js';
|
||||
mathJaxSrc = "includes/MathJax/MathJax.js?config=TeX-AMS_CHTML";
|
||||
}
|
||||
var script = document.createElement("script");
|
||||
script.type = "text/javascript";
|
||||
script.src = jQuerySrc;
|
||||
headBloc.appendChild(script);
|
||||
script = document.createElement("script");
|
||||
script.type = "text/javascript";
|
||||
script.src = mathJaxSrc;
|
||||
headBloc.appendChild(script);
|
||||
</script>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user