mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-30 21:27:17 +00:00
11 lines
308 B
CoffeeScript
11 lines
308 B
CoffeeScript
Darkswarm.directive "renderSvg", ()->
|
|
restrict: 'E'
|
|
priority: 99
|
|
template: "<svg-wrapper></svg-wrapper>"
|
|
link: (scope, elem, attr)->
|
|
if /.svg/.test attr.path # Only do this if we've got an svg
|
|
$.ajax
|
|
url: attr.path
|
|
success: (html)->
|
|
elem.html($(html).find("svg"))
|