mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
11 lines
332 B
CoffeeScript
11 lines
332 B
CoffeeScript
angular.module('Darkswarm').directive 'scrollAfterLoad', ($timeout, $location, $document)->
|
|
# Scroll to an element on page load
|
|
restrict: "A"
|
|
link: (scope, element, attr) ->
|
|
elem = element
|
|
$(window).load ->
|
|
$timeout ->
|
|
if elem?
|
|
$document.scrollTo elem, 100, 200, (x) ->
|
|
x * (2 - x)
|