aboutsummaryrefslogtreecommitdiffstats
path: root/src/ngSanitize/directive/ngBindHtml.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/ngSanitize/directive/ngBindHtml.js')
-rw-r--r--src/ngSanitize/directive/ngBindHtml.js25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/ngSanitize/directive/ngBindHtml.js b/src/ngSanitize/directive/ngBindHtml.js
deleted file mode 100644
index 150e6bdc..00000000
--- a/src/ngSanitize/directive/ngBindHtml.js
+++ /dev/null
@@ -1,25 +0,0 @@
-'use strict';
-
-
-/**
- * @ngdoc directive
- * @name ngSanitize.directive:ngBindHtml
- *
- * @description
- * Creates a binding that will sanitize the result of evaluating the `expression` with the
- * {@link ngSanitize.$sanitize $sanitize} service and innerHTML the result into the current element.
- *
- * See {@link ngSanitize.$sanitize $sanitize} docs for examples.
- *
- * @element ANY
- * @param {expression} ngBindHtml {@link guide/expression Expression} to evaluate.
- */
-angular.module('ngSanitize').directive('ngBindHtml', ['$sanitize', function($sanitize) {
- return function(scope, element, attr) {
- element.addClass('ng-binding').data('$binding', attr.ngBindHtml);
- scope.$watch(attr.ngBindHtml, function ngBindHtmlWatchAction(value) {
- value = $sanitize(value);
- element.html(value || '');
- });
- };
-}]);