Files
openfoodnetwork/app/assets/javascripts/admin/utils/directives/textangular_strip.js.coffee
2020-02-24 11:22:47 +11:00

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