-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (63 loc) · 2.59 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Angular Material style sheet -->
<!-- <link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/angular_material/1.1.0/angular-material.min.css"> -->
</head>
<body ng-app="BlankApp" ng-cloak>
<!--
Your HTML content here
-->
<div id="vsEditor" style="width:100%;height:80vh;"></div>
<md-toolbar>
<div class="md-toolbar-tools">
<h1>App Header</h1>
</div>
</md-toolbar>
<section flex layout="row">
<md-sidenav class="md-sidenav-left" md-component-id="left" md-is-locked-open="true" md-whiteframe="4">
<md-toolbar>
<div class="md-toolbar-tools">
<h2>left nav</h2>
</div>
</md-toolbar>
</md-sidenav>
<md-content flex layout="column">
<div id="vsEditor" flex></div>
</md-content>
</section>
<!-- Angular Material requires Angular.js Libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.5/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.5/angular-animate.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.5/angular-aria.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.5/angular-messages.min.js"></script>
<!-- Angular Material Library -->
<script src="https://ajax.googleapis.com/ajax/libs/angular_material/1.1.0/angular-material.min.js"></script>
<!-- <script src="http://cdnjs.cloudflare.com/ajax/libs/dygraph/2.0.0/dygraph.min.js"></script>
<link rel="stylesheet" src="http://cdnjs.cloudflare.com/ajax/libs/dygraph/2.0.0/dygraph.min.css" /> -->
<!-- Your application bootstrap -->
<script type="text/javascript">
/**
* You must include the dependency on 'ngMaterial'
*/
angular.module('BlankApp', ['ngMaterial']);
</script>
<script>
var rendereJs = require("./renderer.js");
</script>
<script>
// new Dygraph(document.getElementById("vsEditor"), "ny-vs-sf.txt", {
// legend: 'always',
// title: 'NYC vs. SF',
// showRoller: true,
// rollPeriod: 14,
// customBars: true,
// ylabel: 'Temperature (F)',
// });
</script>
</body>
</html>
<!--
Copyright 2016 Google Inc. All Rights Reserved.
Use of this source code is governed by an MIT-style license that can be in foundin the LICENSE file at https://material.angularjs.org/license.
-->