Skip to content

Instantly share code, notes, and snippets.

@gmrdad82
Forked from ofca-snippets/ngHTML.angular.js
Created May 26, 2014 09:40
Show Gist options
  • Save gmrdad82/1cbad0950e5b84ff6cd9 to your computer and use it in GitHub Desktop.
Save gmrdad82/1cbad0950e5b84ff6cd9 to your computer and use it in GitHub Desktop.
/**
* @example
* <span ng-html='foo.bar'></span>
*/
app.directive('ngHtml', function() {
return function(scope, element, attrs) {
scope.$watch(attrs.ngHtml, function(value) {
element[0].innerHTML = value;
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment