docs(ngSanitize): fix directive links

This commit is contained in:
Igor Minar 2012-04-30 01:09:55 -07:00
parent 075c089b5c
commit 006fb4fbeb
2 changed files with 5 additions and 5 deletions

View file

@ -121,7 +121,7 @@ var ngBindTemplateDirective = ['$interpolate', function($interpolate) {
* @description
* Creates a binding that will innerHTML the result of evaluating the `expression` into the current
* element. *The innerHTML-ed content will not be sanitized!* You should use this directive only if
* {@link angular.module.ng.$compileProvider.directive.ngBindHtml ngBindHtml} directive is too
* {@link angular.module.ngSanitize.directive.ngBindHtml ngBindHtml} directive is too
* restrictive and when you absolutely trust the source of the content you are binding to.
*
* See {@link angular.module.ngSanitize.$sanitize $sanitize} docs for examples.

View file

@ -1,4 +1,4 @@
'use strict';
/**
@ -7,10 +7,10 @@
*
* @description
* Creates a binding that will sanitize the result of evaluating the `expression` with the
* {@link angular.module.ng.$sanitize $sanitize} service and innerHTML the result into the current
* element.
* {@link angular.module.ngSanitize.$sanitize $sanitize} service and innerHTML the result into the
* current element.
*
* See {@link angular.module.ng.$sanitize $sanitize} docs for examples.
* See {@link angular.module.ngSanitize.$sanitize $sanitize} docs for examples.
*
* @element ANY
* @param {expression} ngBindHtml {@link guide/dev_guide.expressions Expression} to evaluate.