openfoodfoundation/openfoodnetwork

View on GitHub
app/assets/javascripts/admin/enterprise_fees/directives/bind_html_unsafe_compiled.js.coffee

Summary

Maintainability
Test Coverage
angular.module("admin.enterpriseFees").directive 'ngBindHtmlUnsafeCompiled', ($compile) ->
  (scope, element, attrs) ->
    scope.$watch attrs.ngBindHtmlUnsafeCompiled, (value) ->
      element.html $compile(value)(scope)
      return
    return