mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-18 00:17:25 +00:00
Add spec for ext_url filter, refactor
This commit is contained in:
@@ -1,9 +1,7 @@
|
||||
Darkswarm.filter "ext_url", () ->
|
||||
Darkswarm.filter "ext_url", ->
|
||||
urlPattern = /^https?:\/\//
|
||||
(url, prefix) ->
|
||||
if (!url)
|
||||
return url
|
||||
if (url.match(urlPattern))
|
||||
return url
|
||||
if !url || url.match(urlPattern)
|
||||
url
|
||||
else
|
||||
return prefix + url
|
||||
prefix + url
|
||||
|
||||
Reference in New Issue
Block a user