Sha256: e9c69889c2b7fd28cbd04ddb6697e418e32f97519918668c6b3d3aefd4312d30

Contents?: true

Size: 623 Bytes

Versions: 30

Compression:

Stored size: 623 Bytes

Contents

module = angular.module('maestrano.components.mno-compile',[])

module.directive('compile', ['$compile', ($compile) ->
  (scope, element, attrs) ->
    scope.$watch ((scope) ->
      # watch the 'compile' expression for changes
      scope.$eval attrs.compile
    ), (value) ->
      # when the 'compile' expression changes
      # assign it into the current DOM
      element.html value
    
      # compile the new DOM and link it to the current
      # scope.
      # NOTE: we only compile .childNodes so that
      # we don't get into infinite loop compiling ourselves
      return $compile(element.contents()) scope
])

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
mno-enterprise-frontend-3.4.0 app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-compile.js.coffee
mno-enterprise-frontend-3.3.3 app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-compile.js.coffee
mno-enterprise-frontend-3.3.2 app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-compile.js.coffee
mno-enterprise-frontend-3.2.1 app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-compile.js.coffee
mno-enterprise-frontend-3.3.1 app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-compile.js.coffee
mno-enterprise-frontend-3.3.0 app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-compile.js.coffee
mno-enterprise-frontend-3.2.0 app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-compile.js.coffee
mno-enterprise-frontend-3.1.4 app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-compile.js.coffee
mno-enterprise-frontend-3.0.7 app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-compile.js.coffee
mno-enterprise-frontend-2.0.9 app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-compile.js.coffee
mno-enterprise-frontend-3.1.3 app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-compile.js.coffee
mno-enterprise-frontend-3.0.6 app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-compile.js.coffee
mno-enterprise-frontend-2.0.8 app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-compile.js.coffee
mno-enterprise-frontend-3.1.2 app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-compile.js.coffee
mno-enterprise-frontend-3.0.5 app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-compile.js.coffee
mno-enterprise-frontend-2.0.7 app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-compile.js.coffee
mno-enterprise-frontend-2.0.6 app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-compile.js.coffee
mno-enterprise-frontend-2.0.5 app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-compile.js.coffee
mno-enterprise-frontend-3.1.1 app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-compile.js.coffee
mno-enterprise-frontend-3.0.4 app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-compile.js.coffee