diff options
| author | Peter Bacon Darwin | 2014-02-21 19:37:37 +0000 | 
|---|---|---|
| committer | Peter Bacon Darwin | 2014-02-21 19:37:37 +0000 | 
| commit | 4a6a3ba7fb08ce99007893ef75365a3e8aff938a (patch) | |
| tree | ef12f95d2c48862c08e091588a1137a60870012b /src/ng/directive | |
| parent | 0c9abc32c088bf88ef3d390ac080b5eade40f07c (diff) | |
| download | angular.js-4a6a3ba7fb08ce99007893ef75365a3e8aff938a.tar.bz2 | |
docs(*): fix anchors for members in api docs
Diffstat (limited to 'src/ng/directive')
| -rw-r--r-- | src/ng/directive/ngBind.js | 2 | ||||
| -rw-r--r-- | src/ng/directive/ngClass.js | 4 | ||||
| -rw-r--r-- | src/ng/directive/ngInclude.js | 6 | 
3 files changed, 6 insertions, 6 deletions
| diff --git a/src/ng/directive/ngBind.js b/src/ng/directive/ngBind.js index 2bd01f91..ba4968d1 100644 --- a/src/ng/directive/ngBind.js +++ b/src/ng/directive/ngBind.js @@ -133,7 +133,7 @@ var ngBindTemplateDirective = ['$interpolate', function($interpolate) {   * ngSanitize.$sanitize $sanitize} service.  To utilize this functionality, ensure that `$sanitize`   * is available, for example, by including {@link ngSanitize} in your module's dependencies (not in   * core Angular.)  You may also bypass sanitization for values you know are safe. To do so, bind to - * an explicitly trusted value via {@link ng.$sce#methods_trustAsHtml $sce.trustAsHtml}.  See the example + * an explicitly trusted value via {@link ng.$sce#trustAsHtml $sce.trustAsHtml}.  See the example   * under {@link ng.$sce#Example Strict Contextual Escaping (SCE)}.   *   * Note: If a `$sanitize` service is unavailable and the bound value isn't explicitly trusted, you diff --git a/src/ng/directive/ngClass.js b/src/ng/directive/ngClass.js index 47a4d5c7..a086e531 100644 --- a/src/ng/directive/ngClass.js +++ b/src/ng/directive/ngClass.js @@ -203,8 +203,8 @@ function classDirective(name, selector) {     The ngClass directive still supports CSS3 Transitions/Animations even if they do not follow the ngAnimate CSS naming structure.     Upon animation ngAnimate will apply supplementary CSS classes to track the start and end of an animation, but this will not hinder     any pre-existing CSS transitions already on the element. To get an idea of what happens during a class-based animation, be sure -   to view the step by step details of {@link ngAnimate.$animate#methods_addclass $animate.addClass} and -   {@link ngAnimate.$animate#methods_removeclass $animate.removeClass}. +   to view the step by step details of {@link ngAnimate.$animate#addclass $animate.addClass} and +   {@link ngAnimate.$animate#removeclass $animate.removeClass}.   */  var ngClassDirective = classDirective('', true); diff --git a/src/ng/directive/ngInclude.js b/src/ng/directive/ngInclude.js index 9b271686..29e3abce 100644 --- a/src/ng/directive/ngInclude.js +++ b/src/ng/directive/ngInclude.js @@ -9,10 +9,10 @@   * Fetches, compiles and includes an external HTML fragment.   *   * By default, the template URL is restricted to the same domain and protocol as the - * application document. This is done by calling {@link ng.$sce#methods_getTrustedResourceUrl + * application document. This is done by calling {@link ng.$sce#getTrustedResourceUrl   * $sce.getTrustedResourceUrl} on it. To load templates from other domains or protocols - * you may either {@link ng.$sceDelegateProvider#methods_resourceUrlWhitelist whitelist them} or - * [wrap them](ng.$sce#methods_trustAsResourceUrl) as trusted values. Refer to Angular's {@link + * you may either {@link ng.$sceDelegateProvider#resourceUrlWhitelist whitelist them} or + * [wrap them](ng.$sce#trustAsResourceUrl) as trusted values. Refer to Angular's {@link   * ng.$sce Strict Contextual Escaping}.   *   * In addition, the browser's | 
