angular.js/docs/angular.attrMarkup.ngdoc

16 lines
436 B
Text
Raw Normal View History

@workInProgress
@ngdoc overview
@name angular.attrMarkup
@description
Attribute markup extends the angular compiler in a very similar way as {@link angular.markup} except
2011-04-15 20:01:47 +00:00
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>