mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
10 lines
337 B
CoffeeScript
10 lines
337 B
CoffeeScript
Darkswarm.directive "fillVertical", ($window)->
|
|
# Makes something fill the window vertically. Used on the Google Map.
|
|
restrict: 'A'
|
|
link: (scope, element, attrs)->
|
|
setSize = ->
|
|
element.css "height", ($window.innerHeight - element.offset().top)
|
|
setSize()
|
|
angular.element($window).bind "resize", ->
|
|
setSize()
|