1
0
Fork 0
mirror of https://github.com/YunoHost/doc.git synced 2024-09-03 20:06:26 +02:00

Update frontpage_fr.md

This commit is contained in:
kload@kload.fr 2014-03-15 15:08:08 +01:00 committed by YunoHost
parent 2e43a2886b
commit 562d8beefa

View file

@ -228,12 +228,16 @@
<script type="text/javascript"> <script type="text/javascript">
jQuery('.teasing-part').css({ jQuery('.teasing-part').css({
marginTop: '0', marginTop: '0',
height: jQuery(window).height(),
display: 'block' display: 'block'
}); });
jQuery('.boring-part').css({ jQuery('.boring-part').css({
marginTop: jQuery(window).height() + 100 marginTop: jQuery(window).height() + 100
}); });
jQuery( window ).resize(function() {
jQuery('.boring-part').css({
marginTop: jQuery('.teasing-part').height() + 100
});
});
jQuery('.yolo').hide(); jQuery('.yolo').hide();
randomNumber = Math.floor((Math.random()*jQuery('.yolo').length)+1); randomNumber = Math.floor((Math.random()*jQuery('.yolo').length)+1);
color = jQuery('.yolo.' + randomNumber).css('color'); color = jQuery('.yolo.' + randomNumber).css('color');
@ -253,6 +257,7 @@
}, 500); }, 500);
}); });
$(".actions").css('opacity', 0); $(".actions").css('opacity', 0);
$(".languages").css('opacity', 0);
jQuery.ajaxSetup({cache: false}); jQuery.ajaxSetup({cache: false});
jQuery.getScript('https://'+ location.host +'/mini/javascripts/mini.js', function() { jQuery.getScript('https://'+ location.host +'/mini/javascripts/mini.js', function() {
HOST_BOSH = 'https://'+ location.host +'/http-bind/'; HOST_BOSH = 'https://'+ location.host +'/http-bind/';