-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprova.html
More file actions
26 lines (22 loc) · 879 Bytes
/
prova.html
File metadata and controls
26 lines (22 loc) · 879 Bytes
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
<h4 class="text-center"> Directives </h4>
<div ng-controller="MainCtrl">
<!-- alphabetical directive-->
<alphabetical case="UPPER" step="2" row="false"></alphabetical>
<hr>
<div ng-init="friends = [{name:'John', phone:'555-1276'},
{name:'Mary', phone:'800-BIG-MARY'},
{name:'Mike', phone:'555-4321'},
{name:'Adam', phone:'555-5678'},
{name:'Julie', phone:'555-8765'},
{name:'Juliette', phone:'555-5678'}]"></div>
<ul ng-repeat="friend in friends | filter:active">
<li>{{friend.name}}</li>
</ul>
<!-- social directive -->
<social-bar vertical="false">
<social-facebook title=""></social-facebook>
<social-email></social-email>
<social-twitter ></social-twitter>
<social-google></social-google>
</social-bar>
</div>