Sha256: a3007d71ff92484b75a4fe6c252344c81276b33fc06b78c960895e74e40f7a55
Contents?: true
Size: 513 Bytes
Versions: 8
Compression:
Stored size: 513 Bytes
Contents
/* Custom UI settings and UI initialization. */ $(document).ready(function () { // Sticky footer, (Borrowed from minimal mistakes theme code) var bumpIt = function () { $(".page-content").css("padding-bottom", $(".page-footer").outerHeight(true)); }, didResize = false; bumpIt(); $(window).resize(function () { didResize = true; }); setInterval(function () { if (didResize) { didResize = false; bumpIt(); } }, 250); });
Version data entries
8 entries across 8 versions & 1 rubygems