aboutsummaryrefslogtreecommitdiffstats
path: root/src/ngSanitize/directive/ngBindHtml.js
diff options
context:
space:
mode:
authorChirayu Krishnappa2013-07-19 16:04:51 -0700
committerChirayu Krishnappa2013-07-25 14:29:56 -0700
commitdae694739b9581bea5dbc53522ec00d87b26ae55 (patch)
tree00d55fd867916df991f699cfe398243205f03ffc /src/ngSanitize/directive/ngBindHtml.js
parentbea9422ebfc8e80ee28ad81afc62d2e432c85cbb (diff)
downloadangular.js-dae694739b9581bea5dbc53522ec00d87b26ae55.tar.bz2
feat(ngBindHtml, sce): combine ng-bind-html and ng-bind-html-unsafe
Changes: - remove ng-bind-html-unsafe - ng-bind-html is now in core - ng-bind-html is secure - supports SCE - so you can bind to an arbitrary trusted string - automatic sanitization if $sanitize is available BREAKING CHANGE: ng-html-bind-unsafe has been removed and replaced by ng-html-bind (which has been removed from ngSanitize.) ng-bind-html provides ng-html-bind-unsafe like behavior (innerHTML's the result without sanitization) when bound to the result of $sce.trustAsHtml(string). When bound to a plain string, the string is sanitized via $sanitize before being innerHTML'd. If $sanitize isn't available, it's logs an exception.
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 || '');
- });
- };
-}]);