Advertisement
Guest User

Untitled

a guest
Oct 9th, 2015
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /**
  2.  * Created by kliko on 10/9/15.
  3.  */
  4. $(document).ready(function() {
  5.     (function() {
  6.         $('#page-wrapper').css('min-height', '+=' + ($(window).height() - $('nav').height() + $('.top-bar').height()));
  7.     })();
  8.     setInterval(function() {
  9.         $('#page-wrapper').css({
  10.             'min-height': ($(window).height() - $('nav').height() + $('.top-bar').height())
  11.         });
  12.     }, 1000);
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement