Skip to content

Instantly share code, notes, and snippets.

@Lotuashvili
Last active August 29, 2015 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Lotuashvili/a682792a89854d2b400f to your computer and use it in GitHub Desktop.
Save Lotuashvili/a682792a89854d2b400f to your computer and use it in GitHub Desktop.
Sticky footer with Coffee
$ ->
check = ->
$ '.wrapper, .footer-wrapper'
.removeAttr 'style'
doc = $(document).innerHeight()
wrapper = $('.wrapper').innerHeight()
if doc > wrapper
$ '.wrapper'
.css
'min-height': '100%'
$ '.footer-wrapper'
.css
'position': 'absolute'
'bottom': '0'
'left': '0'
'right': '0'
check()
$ window
.resize ->
check()
.wrapper
position: relative
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment