mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
12 lines
429 B
CoffeeScript
12 lines
429 B
CoffeeScript
angular.module("admin.utils").directive "textangularStrip", () ->
|
|
restrict: 'CA'
|
|
link: (scope, element, attrs) ->
|
|
scope.stripFormatting = ($html) ->
|
|
element = document.createElement("div")
|
|
element.innerHTML = String($html)
|
|
allTags = element.getElementsByTagName("*")
|
|
for child in allTags
|
|
child.removeAttribute("style")
|
|
child.removeAttribute("class")
|
|
return element.innerHTML
|