aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/api/angular.attrMarkup.ngdoc
diff options
context:
space:
mode:
authorIgor Minar2011-06-06 22:02:30 -0700
committerIgor Minar2011-06-06 23:10:30 -0700
commitc35b0a7907de1535269876668c345ce944681804 (patch)
treea3ba548369ca65db790809197196ae946cc93a18 /docs/content/api/angular.attrMarkup.ngdoc
parent805bb5bb6e5842a5760976a446074d553609f5b6 (diff)
downloadangular.js-c35b0a7907de1535269876668c345ce944681804.tar.bz2
yet another docs batch
Diffstat (limited to 'docs/content/api/angular.attrMarkup.ngdoc')
-rw-r--r--docs/content/api/angular.attrMarkup.ngdoc15
1 files changed, 0 insertions, 15 deletions
diff --git a/docs/content/api/angular.attrMarkup.ngdoc b/docs/content/api/angular.attrMarkup.ngdoc
deleted file mode 100644
index aad20866..00000000
--- a/docs/content/api/angular.attrMarkup.ngdoc
+++ /dev/null
@@ -1,15 +0,0 @@
-@workInProgress
-@ngdoc overview
-@name angular.attrMarkup
-
-@description
-Attribute markup extends the angular compiler in a very similar way as {@link angular.markup} except
-that it allows you to modify the state of the attribute text rather then the content of a node.
-
-<pre>
-angular.attrMarkup('extraClass', function(attrValue, attrName, element){
- if (attrName == 'additional-class') {
- element.addClass(attrValue);
- }
-});
-</pre>