mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
10 lines
338 B
CoffeeScript
10 lines
338 B
CoffeeScript
angular.module('Darkswarm').directive "ofnScrollTo", ($location, $anchorScroll)->
|
|
# Onclick sets $location.hash to attrs.ofnScrollTo
|
|
# Then triggers anchorScroll
|
|
restrict: 'A'
|
|
link: (scope, element, attrs)->
|
|
element.bind 'click', (ev)->
|
|
ev.stopPropagation()
|
|
$location.hash attrs.ofnScrollTo
|
|
$anchorScroll()
|