-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (33 loc) · 985 Bytes
/
Copy pathindex.html
File metadata and controls
34 lines (33 loc) · 985 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 ng-app="jsh">
<head>
<title>Socket.IO chat</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
</style>
</head>
<body>
<section ng-controller="MainController as mc">
<header>
<h3>Basic Content update data example:</h3>
<div ng-cloak>{{mc.data.payload}}</div>
</header>
</section>
<section>
<header>
<h3>D3 directive + websockets integration example ( super cool! )</h3>
</header>
<jsh-bar-chart></jsh-bar-chart>
</section>
<script src="d3/d3.js"></script>
<script src="angular/angular.js"></script>
<script src="angular-ui-router/build/angular-ui-router.js"></script>
<script src="app.js"></script>
<script src="MainController.js"></script>
<script src="contentSocket.js"></script>
<script src="jshBarChart.js"></script>
<script src="/socket.io/socket.io.js"></script>
<script>
</script>
</body>
</html>