mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
6 lines
209 B
CoffeeScript
6 lines
209 B
CoffeeScript
angular.module("admin.utils").directive "textangularStrip", () ->
|
|
restrict: 'CA'
|
|
link: (scope, element, attrs) ->
|
|
scope.stripFormatting = ($html) ->
|
|
return String($html).replace(/<[^>]+>/gm, '')
|