Flexbox sticky footer (#2289)

* Remove sticky footer JavaScript

* Use flexbox to force footer to the bottom of every page

* Fix flexbox in Internet Explorer
This commit is contained in:
Michael Rose
2019-10-21 10:41:36 -04:00
committed by GitHub
parent 29263ac102
commit 6d28d12d1d
4 changed files with 17 additions and 21 deletions

View File

@@ -3,18 +3,6 @@
========================================================================== */
$(document).ready(function() {
// Sticky footer
var bumpIt = function() {
$("body").css("margin-bottom", $(".page__footer").outerHeight(true));
};
bumpIt();
$(window).resize(
jQuery.throttle(250, function() {
bumpIt();
})
);
// FitVids init
$("#main").fitVids();

File diff suppressed because one or more lines are too long