1
2
3
4
5
6
7
8
9
10
App =
UI: {
setAutoHeight: ->
$(window).resize(->
height = $(window).height()
$(".height-setter").css({height: height})
console.log $(".height-setter").css('height')
)
}