app/assets/javascripts/_main.coffee
1ec65f29
 App =
   UI: {
     setAutoHeight: ->
       $(window).resize(->
         height = $(window).height()
         $(".height-setter").css({height: height})
         console.log $(".height-setter").css('height')
       )
   }