mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
6 lines
254 B
CoffeeScript
6 lines
254 B
CoffeeScript
angular.module('Darkswarm').directive "embeddedTargetBlank", ->
|
|
restrict: 'A'
|
|
compile: (element) ->
|
|
elems = (element.children().find("a"))
|
|
if window.location.search.indexOf("embedded_shopfront=true") != -1
|
|
elems.attr("target", "_blank") |