-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathindex.html
37 lines (33 loc) · 1.17 KB
/
index.html
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
<!--
AngularJS with TypeScript in 20-ish Minutes
Dan Wahlin
@DanWahlin
http://weblogs.asp.net/dwahlin
http://github.com/danwahlin
1. Data Binding and Directives
2. Filters
3. Modules and Controllers
4. Routes
5. Factories
-->
<!DOCTYPE html>
<html ng-app="demoApp">
<head>
<title>Angular App</title>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet" />
<link href="styles/animations.css" rel="stylesheet" />
</head>
<body>
<h1>AngularJS and TypeScript</h1>
<br />
<div ng-view class="slide-animation"></div>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular-route.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular-animate.js"></script>
<script src="js/app.module.js"></script>
<script src="js/controllers/customers.controller.js"></script>
<script src="js/controllers/orders.controller.js"></script>
<script src="js/services/data.service.js"></script>
<script src="js/directives/filterTextbox.directive.js"></script>
</body>
</html>