aboutsummaryrefslogtreecommitdiffstats
path: root/src/widgets.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/widgets.js')
-rw-r--r--src/widgets.js41
1 files changed, 7 insertions, 34 deletions
diff --git a/src/widgets.js b/src/widgets.js
index 68c40b92..18ac27c3 100644
--- a/src/widgets.js
+++ b/src/widgets.js
@@ -1,35 +1,8 @@
'use strict';
/**
- * @ngdoc overview
- * @name angular.widget
- * @description
- *
- * An angular widget can be either a custom attribute that modifies an existing DOM element or an
- * entirely new DOM element.
- *
- * During html compilation, widgets are processed after {@link angular.markup markup}, but before
- * {@link angular.directive directives}.
- *
- * Following is the list of built-in angular widgets:
- *
- * * {@link angular.widget.@ng:non-bindable ng:non-bindable} - Blocks angular from processing an
- * HTML element.
- * * {@link angular.widget.@ng:repeat ng:repeat} - Creates and manages a collection of cloned HTML
- * elements.
- * * {@link angular.inputType HTML input elements} - Standard HTML input elements data-bound by
- * angular.
- * * {@link angular.widget.ng:view ng:view} - Works with $route to "include" partial templates
- * * {@link angular.widget.ng:switch ng:switch} - Conditionally changes DOM structure
- * * {@link angular.widget.ng:include ng:include} - Includes an external HTML fragment
- *
- * For more information about angular widgets, see {@link guide/dev_guide.compiler.widgets
- * Understanding Angular Widgets} in the angular Developer Guide.
- */
-
-/**
* @ngdoc widget
- * @name angular.widget.ng:include
+ * @name angular.module.ng.$compileProvider.directive.ng:include
*
* @description
* Fetches, compiles and includes an external HTML fragment.
@@ -146,7 +119,7 @@ var ngIncludeDirective = ['$http', '$templateCache', '$anchorScroll', '$compile'
/**
* @ngdoc widget
- * @name angular.widget.ng:switch
+ * @name angular.module.ng.$compileProvider.directive.ng:switch
*
* @description
* Conditionally change the DOM structure.
@@ -290,7 +263,7 @@ var htmlAnchorDirective = valueFn({
/**
* @ngdoc widget
- * @name angular.widget.@ng:repeat
+ * @name angular.module.ng.$compileProvider.directive.ng:repeat
*
* @description
* The `ng:repeat` widget instantiates a template once per item from a collection. Each template
@@ -474,7 +447,7 @@ var ngRepeatDirective = ['$compile', function($compile) {
/**
* @ngdoc widget
- * @name angular.widget.@ng:non-bindable
+ * @name angular.module.ng.$compileProvider.directive.ng:non-bindable
*
* @description
* Sometimes it is necessary to write code which looks like bindings but which should be left alone
@@ -508,7 +481,7 @@ var ngNonBindableDirective = valueFn({ terminal: true });
/**
* @ngdoc widget
- * @name angular.widget.ng:view
+ * @name angular.module.ng.$compileProvider.directive.ng:view
*
* @description
* # Overview
@@ -517,7 +490,7 @@ var ngNonBindableDirective = valueFn({ terminal: true });
* Every time the current route changes, the included view changes with it according to the
* configuration of the `$route` service.
*
- * This widget provides functionality similar to {@link angular.widget.ng:include ng:include} when
+ * This widget provides functionality similar to {@link angular.module.ng.$compileProvider.directive.ng:include ng:include} when
* used like this:
*
* <ng:include src="$route.current.template" scope="$route.current.scope"></ng:include>
@@ -617,7 +590,7 @@ var ngViewDirective = ['$http', '$templateCache', '$route', '$anchorScroll', '$c
/**
* @ngdoc widget
- * @name angular.widget.ng:pluralize
+ * @name angular.module.ng.$compileProvider.directive.ng:pluralize
*
* @description
* # Overview