mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-13 23:37:47 +00:00
9 lines
291 B
CoffeeScript
9 lines
291 B
CoffeeScript
Darkswarm.directive 'scrollAfterLoad', ($timeout, $location, $document)->
|
|
restrict: "A"
|
|
link: (scope, element, attr) ->
|
|
if scope.$last is true
|
|
$(window).load ->
|
|
$timeout ->
|
|
$document.scrollTo $("##{$location.hash()}"), 100, 200, (x)->
|
|
x * (2 - x)
|