aboutsummaryrefslogtreecommitdiffstats
path: root/docs/angular.attrMarkup.ngdoc
blob: f73a5b42a7b344332cb02d9d43a6b9920e8aea7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@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 contest of a node.

<pre>
angular.attrMarkup('extraClass', function(attrValue, attrName, element){
  if (attrName == 'additional-class') {
    element.addClass(attrValue);
  }
});
</pre>
scribe-example.py?h=azure-fix&id=57d27fe29751f9cbd14a26d2a4ee8402168bfe8b'>plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77