mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-02 21:57:17 +00:00
Uses strategy from this forum comment: http://foundation.zurb.com/forum/posts/547#comment_8840
7 lines
183 B
CoffeeScript
7 lines
183 B
CoffeeScript
$ ->
|
|
menu = $(".left-off-canvas-menu")
|
|
setOffcanvasMenuHeight = ->
|
|
menu.height($(window).height())
|
|
$(window).on("resize", setOffcanvasMenuHeight)
|
|
setOffcanvasMenuHeight()
|