mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
7 lines
233 B
CoffeeScript
7 lines
233 B
CoffeeScript
Darkswarm.directive "mailto", (Navigation)->
|
|
restrict: 'A'
|
|
link: (scope, element, attrs)->
|
|
element.bind 'click', (e)->
|
|
e.preventDefault()
|
|
window.location.href = "mailto:#{attrs.href.split("").reverse().join("")}"
|