-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathservice.html
More file actions
33 lines (28 loc) · 816 Bytes
/
Copy pathservice.html
File metadata and controls
33 lines (28 loc) · 816 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Demo</title>
<link href="css/bootstrap.min.css" rel="stylesheet" />
<link href="css/bootstrap-theme.min.css" rel="stylesheet" />
</head>
<body>
<div class="container">
<my-component></my-component>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/system.js"></script>
<script src="js/typescript.js"></script>
<script src="js/angular2.js"></script>
<script>
System.config({
transpiler: 'typescript',
typescriptOptions: { emitDecoratorMetadata: true }
});
System.import('service.es');
</script>
</body>
</html>