mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-03 22:06:07 +00:00
11 lines
267 B
CoffeeScript
11 lines
267 B
CoffeeScript
Darkswarm.directive "fillVertical", ($window)->
|
|
restrict: 'A'
|
|
|
|
link: (scope, element, attrs)->
|
|
setSize = ->
|
|
element.css "height", ($window.innerHeight - element.offset().top)
|
|
setSize()
|
|
|
|
angular.element($window).bind "resize", ->
|
|
setSize()
|