-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathangular.html
More file actions
34 lines (29 loc) · 976 Bytes
/
angular.html
File metadata and controls
34 lines (29 loc) · 976 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
27
28
29
30
31
32
33
34
<!doctype html>
<html xmlns:ng="http://angularjs.org">
<meta charset=utf8>
<script src="http://code.angularjs.org/angular-0.9.16.min.js" ng:autobind></script>
<body>
<script type="text/javascript" charset="utf-8">
</script>
<div id="map">
</div>
<div id="feeds" class="box">
<div class="header">
<h3>Feeds</h3>
<button>New</button>
</div>
<div class="feeds collection">
<div class="feed feeds-item">
<h3 class="feed-name">RATP</h3>
<div class="feed-loadStatus-notloaded">
<button action=load>Load</button>
</div>
<div class="feed-loadStatus-loading">
<div class="progress feed-loadProgress"></div>
</div>
</div>
</div>
</div>
<script src="lib/angular/angular.js" ng:autobind></script>
</body>
</html>