diff options
| author | Vojta Jina | 2011-05-19 19:22:25 +0200 | 
|---|---|---|
| committer | Igor Minar | 2011-06-06 22:52:01 -0700 | 
| commit | 297c9b5b89a6e20d83631170e3c2f71448046bbd (patch) | |
| tree | 34d854a2295790ddeca6268c928f86029ca6e815 | |
| parent | 43b2cd45f0b42efb67497a6471f3a1b26d792bd9 (diff) | |
| download | angular.js-297c9b5b89a6e20d83631170e3c2f71448046bbd.tar.bz2 | |
Fix wrong links in source code
| -rw-r--r-- | src/Injector.js | 2 | ||||
| -rw-r--r-- | src/directives.js | 28 | 
2 files changed, 15 insertions, 15 deletions
diff --git a/src/Injector.js b/src/Injector.js index be00ff3e..0f752dc4 100644 --- a/src/Injector.js +++ b/src/Injector.js @@ -5,7 +5,7 @@   *   * @description   * Creates an inject function that can be used for dependency injection. - * (See {@link guide.di dependency injection}) + * (See {@link guide/di dependency injection})   *   * The inject function can be used for retrieving service instances or for calling any function   * which has the $inject property so that the services can be automatically provided. Angular diff --git a/src/directives.js b/src/directives.js index 7f597823..f98f3421 100644 --- a/src/directives.js +++ b/src/directives.js @@ -8,7 +8,7 @@   *  before the template enters execution mode during bootstrap.   *   * @element ANY - * @param {expression} expression {@link guide.expression Expression} to eval. + * @param {expression} expression {@link guide/expression Expression} to eval.   *   * @example     <doc:example> @@ -52,7 +52,7 @@ angularDirective("ng:init", function(expression){   *   * @element ANY   * @param {expression} expression Name of a globally accessible constructor function or an - *     {@link guide.expression expression} that on the current scope evaluates to a constructor + *     {@link guide/expression expression} that on the current scope evaluates to a constructor   *     function.   *   * @example @@ -140,7 +140,7 @@ angularDirective("ng:controller", function(expression){   * without displaying the result to the user.   *   * @element ANY - * @param {expression} expression {@link guide.expression Expression} to eval. + * @param {expression} expression {@link guide/expression Expression} to eval.   *   * @example   * Notice that `{{` `obj.multiplied = obj.a * obj.b` `}}` has a side effect of assigning @@ -189,7 +189,7 @@ angularDirective("ng:eval", function(expression){   * `<span ng:bind="expression"></span>` at bootstrap time.   *   * @element ANY - * @param {expression} expression {@link guide.expression Expression} to eval. + * @param {expression} expression {@link guide/expression Expression} to eval.   *   * @example   * You can try it right here: enter text in the text box and watch the greeting change. @@ -348,10 +348,10 @@ var REMOVE_ATTRIBUTES = {   * @name angular.directive.ng:bind-attr   *   * @description - * The `ng:bind-attr` attribute specifies that {@link guide.data-binding databindings}  should be + * The `ng:bind-attr` attribute specifies that {@link guide/data-binding databindings}  should be   * created between element attributes and given expressions. Unlike `ng:bind` the `ng:bind-attr`   * contains a JSON key value pairs representing which attributes need to be mapped to which - * {@link guide.expression expressions}. + * {@link guide/expression expressions}.   *   * You don't usually write the `ng:bind-attr` in the HTML since embedding   * <tt ng:non-bindable>{{expression}}</tt> into the attribute directly as the attribute value is @@ -438,7 +438,7 @@ angularDirective("ng:bind-attr", function(expression){   * element is clicked.   *   * @element ANY - * @param {expression} expression {@link guide.expression Expression} to eval upon click. + * @param {expression} expression {@link guide/expression Expression} to eval upon click.   *   * @example     <doc:example> @@ -489,7 +489,7 @@ angularDirective("ng:click", function(expression, element){   * server and reloading the current page).   *   * @element form - * @param {expression} expression {@link guide.expression Expression} to eval. + * @param {expression} expression {@link guide/expression Expression} to eval.   *   * @example     <doc:example> @@ -552,7 +552,7 @@ function ngClass(selector) {   * conditionally.   *   * @element ANY - * @param {expression} expression {@link guide.expression Expression} to eval. + * @param {expression} expression {@link guide/expression Expression} to eval.   *   * @example     <doc:example> @@ -593,7 +593,7 @@ angularDirective("ng:class", ngClass(function(){return true;}));   * and takes affect only on odd (even) rows.   *   * @element ANY - * @param {expression} expression {@link guide.expression Expression} to eval. Must be inside + * @param {expression} expression {@link guide/expression Expression} to eval. Must be inside   * `ng:repeat`.   *   * @example @@ -631,7 +631,7 @@ angularDirective("ng:class-odd", ngClass(function(i){return i % 2 === 0;}));   * and takes affect only on odd (even) rows.   *   * @element ANY - * @param {expression} expression {@link guide.expression Expression} to eval. Must be inside + * @param {expression} expression {@link guide/expression Expression} to eval. Must be inside   * `ng:repeat`.   *   * @example @@ -668,7 +668,7 @@ angularDirective("ng:class-even", ngClass(function(i){return i % 2 === 1;}));   * conditionally.   *   * @element ANY - * @param {expression} expression If the {@link guide.expression expression} is truthy then the element + * @param {expression} expression If the {@link guide/expression expression} is truthy then the element   *     is shown or hidden respectively.   *   * @example @@ -709,7 +709,7 @@ angularDirective("ng:show", function(expression, element){   * of the HTML conditionally.   *   * @element ANY - * @param {expression} expression If the {@link guide.expression expression} truthy then the element + * @param {expression} expression If the {@link guide/expression expression} truthy then the element   *     is shown or hidden respectively.   *   * @example @@ -749,7 +749,7 @@ angularDirective("ng:hide", function(expression, element){   * The ng:style allows you to set CSS style on an HTML element conditionally.   *   * @element ANY - * @param {expression} expression {@link guide.expression Expression} which evals to an object whose + * @param {expression} expression {@link guide/expression Expression} which evals to an object whose   *      keys are CSS style names and values are corresponding values for those CSS keys.   *   * @example  | 
