aboutsummaryrefslogtreecommitdiffstats
path: root/src/directives.js
diff options
context:
space:
mode:
authorIgor Minar2011-10-12 12:19:39 -0700
committerIgor Minar2011-10-12 23:04:48 -0700
commitb3c4cb7cff8bab6e0e3d7e68870ed6316bbd5241 (patch)
treed7561b1e2704197c8f0e441abbf98661d2145ac5 /src/directives.js
parent4af4378b11c971f99205b7e712c13e8ef3467749 (diff)
downloadangular.js-b3c4cb7cff8bab6e0e3d7e68870ed6316bbd5241.tar.bz2
docs(*): remove @workInProgress from everywhere
it's not useful any more and it only makes the docs look ugly
Diffstat (limited to 'src/directives.js')
-rw-r--r--src/directives.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/directives.js b/src/directives.js
index 5cafab47..b9779adf 100644
--- a/src/directives.js
+++ b/src/directives.js
@@ -42,7 +42,6 @@
*/
/**
- * @workInProgress
* @ngdoc directive
* @name angular.directive.ng:init
*
@@ -75,7 +74,6 @@ angularDirective("ng:init", function(expression){
});
/**
- * @workInProgress
* @ngdoc directive
* @name angular.directive.ng:controller
*
@@ -306,7 +304,6 @@ function compileBindTemplate(template){
}
/**
- * @workInProgress
* @ngdoc directive
* @name angular.directive.ng:bind-template
*
@@ -441,7 +438,6 @@ angularDirective("ng:bind-attr", function(expression){
/**
- * @workInProgress
* @ngdoc directive
* @name angular.directive.ng:click
*
@@ -490,7 +486,6 @@ angularDirective("ng:click", function(expression, element){
/**
- * @workInProgress
* @ngdoc directive
* @name angular.directive.ng:submit
*
@@ -557,7 +552,6 @@ function ngClass(selector) {
}
/**
- * @workInProgress
* @ngdoc directive
* @name angular.directive.ng:class
*
@@ -603,7 +597,6 @@ function ngClass(selector) {
angularDirective("ng:class", ngClass(function() {return true;}));
/**
- * @workInProgress
* @ngdoc directive
* @name angular.directive.ng:class-odd
*
@@ -644,7 +637,6 @@ angularDirective("ng:class", ngClass(function() {return true;}));
angularDirective("ng:class-odd", ngClass(function(i){return i % 2 === 0;}));
/**
- * @workInProgress
* @ngdoc directive
* @name angular.directive.ng:class-even
*
@@ -685,7 +677,6 @@ angularDirective("ng:class-odd", ngClass(function(i){return i % 2 === 0;}));
angularDirective("ng:class-even", ngClass(function(i){return i % 2 === 1;}));
/**
- * @workInProgress
* @ngdoc directive
* @name angular.directive.ng:show
*
@@ -726,7 +717,6 @@ angularDirective("ng:show", function(expression, element){
});
/**
- * @workInProgress
* @ngdoc directive
* @name angular.directive.ng:hide
*
@@ -767,7 +757,6 @@ angularDirective("ng:hide", function(expression, element){
});
/**
- * @workInProgress
* @ngdoc directive
* @name angular.directive.ng:style
*