Panel bugfix

This commit is contained in:
Kload 2013-10-24 10:19:44 +00:00
parent c0c10edbf5
commit 248d5fb3c2

View file

@ -52,12 +52,14 @@ ynh.jquery = jQuery.noConflict();
$("#glu").load(function() { $("#glu").load(function() {
setTimeout(function() { setTimeout(function() {
if ($("#ynhtopbar").length == 0) {
$('body').children().filter(function() { $('body').children().filter(function() {
return $(this).css("position") === 'absolute' || $(this).css("position") === 'fixed'; return $(this).css("position") === 'absolute' || $(this).css("position") === 'fixed';
}).css({top: function(index, value) { }).css({top: function(index, value) {
return parseFloat(value) + h + 3; return parseFloat(value) + h + 3;
}}); }});
$("body").append('<div id="ynhtopbar"><div id="ynhtoggle" class="ynhopen">YunoHost</div></div>'); $("body").append('<div id="ynhtopbar"><div id="ynhtoggle" class="ynhopen">YunoHost</div></div>');
}
$("body").css({marginTop: function(index, value) { $("body").css({marginTop: function(index, value) {
return parseFloat(value) + h + 3; return parseFloat(value) + h + 3;
}}); }});
@ -85,7 +87,7 @@ ynh.jquery = jQuery.noConflict();
checkScroll("bottom"); checkScroll("bottom");
preventFire = true; preventFire = true;
} else { } else {
setTimeout(function() { preventFire = false; }, 200); setTimeout(function() { preventFire = false; }, 500);
checkScroll("top"); checkScroll("top");
} }
}); });