aboutsummaryrefslogtreecommitdiffstats
path: root/src/widget
diff options
context:
space:
mode:
authorMisko Hevery2011-12-14 02:55:31 +0100
committerMisko Hevery2012-01-25 11:53:59 -0800
commit4804c83b7db5770d5d02eea9eea4cc012b4aa524 (patch)
treebe5ae1743179704cc1638f186cddba8d6e3fa37d /src/widget
parente2b1d9e994e50bcd01d237302a3357bc7ebb6fa5 (diff)
downloadangular.js-4804c83b7db5770d5d02eea9eea4cc012b4aa524.tar.bz2
docs(compiler): update the compiler docs
Diffstat (limited to 'src/widget')
-rw-r--r--src/widget/form.js2
-rw-r--r--src/widget/input.js6
-rw-r--r--src/widget/select.js8
3 files changed, 8 insertions, 8 deletions
diff --git a/src/widget/form.js b/src/widget/form.js
index 405aae74..552cc4e5 100644
--- a/src/widget/form.js
+++ b/src/widget/form.js
@@ -2,7 +2,7 @@
/**
* @ngdoc widget
- * @name angular.widget.form
+ * @name angular.module.ng.$compileProvider.directive.form
*
* @description
* Angular widget that creates a form scope using the
diff --git a/src/widget/input.js b/src/widget/input.js
index 9f9d9852..9f522d18 100644
--- a/src/widget/input.js
+++ b/src/widget/input.js
@@ -603,7 +603,7 @@ var HTML5_INPUTS_TYPES = makeMap(
/**
* @ngdoc widget
- * @name angular.widget.input
+ * @name angular.module.ng.$compileProvider.directive.input
*
* @description
* HTML input element widget with angular data-binding. Input widget follows HTML5 input types
@@ -827,12 +827,12 @@ var inputDirective = ['$defer', '$formFactory', function($defer, $formFactory) {
/**
* @ngdoc widget
- * @name angular.widget.textarea
+ * @name angular.module.ng.$compileProvider.directive.textarea
*
* @description
* HTML textarea element widget with angular data-binding. The data-binding and validation
* properties of this element are exactly the same as those of the
- * {@link angular.widget.input input element}.
+ * {@link angular.module.ng.$compileProvider.directive.input input element}.
*
* @param {string} type Widget types as defined by {@link angular.inputType}. If the
* type is in the format of `@ScopeType` then `ScopeType` is loaded from the
diff --git a/src/widget/select.js b/src/widget/select.js
index ae9e1b7c..332009d2 100644
--- a/src/widget/select.js
+++ b/src/widget/select.js
@@ -2,7 +2,7 @@
/**
* @ngdoc widget
- * @name angular.widget.select
+ * @name angular.module.ng.$compileProvider.directive.select
*
* @description
* HTML `SELECT` element with angular data-binding.
@@ -12,7 +12,7 @@
* Optionally `ng:options` attribute can be used to dynamically generate a list of `<option>`
* elements for a `<select>` element using an array or an object obtained by evaluating the
* `ng:options` expression.
- *
+ *˝˝
* When an item in the select menu is select, the value of array element or object property
* represented by the selected option will be bound to the model identified by the `ng:model` attribute
* of the parent select element.
@@ -22,13 +22,13 @@
* option. See example below for demonstration.
*
* Note: `ng:options` provides iterator facility for `<option>` element which must be used instead
- * of {@link angular.widget.@ng:repeat ng:repeat}. `ng:repeat` is not suitable for use with
+ * of {@link angular.module.ng.$compileProvider.directive.ng:repeat ng:repeat}. `ng:repeat` is not suitable for use with
* `<option>` element because of the following reasons:
*
* * value attribute of the option element that we need to bind to requires a string, but the
* source of data for the iteration might be in a form of array containing objects instead of
* strings
- * * {@link angular.widget.@ng:repeat ng:repeat} unrolls after the select binds causing
+ * * {@link angular.module.ng.$compileProvider.directive.ng:repeat ng:repeat} unrolls after the select binds causing
* incorect rendering on most browsers.
* * binding to a value not in list confuses most browsers.
*