Skip to content
Snippets Groups Projects
Commit 71d72f5a authored by Oliver Davies's avatar Oliver Davies
Browse files

Revert "Issue #2411595: Make the footer sticky when the page is smaller than the"

t revert b815f5eb
This reverts commit 64237041.
parent 64237041
No related branches found
No related tags found
No related merge requests found
(function ($) {
$(document).ready(function() {
$("table").not("#forum table").not(".page-user-track table").not("#project-usage-project-releases").responsivetable();
var bodyHeight = $('body').height();
var windowHeight = $(window).height();
if (windowHeight > bodyHeight) {
$('#footer').css({
bottom: 0,
position: 'absolute',
});
}
});
})(jQuery);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment