Skip to content

Instantly share code, notes, and snippets.

@antiden
Created June 27, 2017 05:58
Show Gist options
  • Save antiden/97bffc88dccee831f33bc4752d87f6e3 to your computer and use it in GitHub Desktop.
Save antiden/97bffc88dccee831f33bc4752d87f6e3 to your computer and use it in GitHub Desktop.
$(function() {
var timer;
$(window).resize(function() {
clearTimeout(timer);
timer = setTimeout(function() {
$('.main').css("min-height", $(window).height() + "px" );
}, 40);
}).resize();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment