Pony.fm/public/scripts/shared/layout.coffee

13 lines
338 B
CoffeeScript
Raw Normal View History

2013-07-25 23:33:04 +02:00
window.handleResize = () ->
windowHeight = $(window).height()
$siteBody = $ '.site-body'
$siteBody.height windowHeight - $('header').height() - 1
$('.strech-to-bottom').each () ->
$this = $ this
$this.height windowHeight - $this.offset().top
window.handleResize()
$(window).resize window.handleResize
$('.site-content').empty()