OLD | NEW |
---|---|
1 <!doctype html> | 1 <!doctype html> |
2 | 2 |
3 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved. |
4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
5 found in the LICENSE file. --> | 5 found in the LICENSE file. --> |
6 | 6 |
7 <!-- This page uses Flot version 0.7 in compressed form for efficiency. | 7 <!-- This page uses Flot version 0.7 in compressed form for efficiency. |
8 Readable Flot source is available at http://code.google.com/p/flot/ | 8 Readable Flot source is available at http://code.google.com/p/flot/ |
9 Good caliber Flot API docs are at: http://people.iola.dk/olau/flot/API.txt | 9 Good caliber Flot API docs are at: http://people.iola.dk/olau/flot/API.txt |
10 as of 6/2012 --> | 10 as of 6/2012.--> |
Dan Beam
2012/08/03 18:40:36
. --> (needs a space)
clintstaley
2012/08/06 21:06:47
Done.
| |
11 | 11 |
12 <html> | 12 <html> |
13 <head> | 13 <head> |
14 <script type="text/javascript" | 14 <script src="chrome://resources/js/cr.js"></script> |
15 src="../../../../third_party/flot/jquery.min.js"></script> | 15 <script src="chrome://resources/js/util.js"></script> |
16 <script type="text/javascript" | 16 <script type="text/javascript" src="jquery.js"></script> |
Dan Beam
2012/08/03 18:40:36
I think you should omit [type] here or be consiste
clintstaley
2012/08/06 21:06:47
Done.
| |
17 src="../../../../third_party/flot/jquery.flot.min.js"></script> | 17 <script type="text/javascript" src="flot.js"></script> |
18 <link rel="stylesheet" type="text/css" href="chart.css"/> | 18 <link rel="stylesheet" type="text/css" href="chart.css"/> |
19 </head> | 19 </head> |
20 <body> | 20 <body> |
21 <div id="chooseBlock"> | 21 <div id="chooseBlock"> |
22 <div id="chooseMetrics"> | 22 <div id="chooseMetrics"> |
23 <h2>Choose Metrics</h2> | 23 <h2>Choose Metrics</h2> |
24 </div> | 24 </div> |
25 <div id="chooseEvents"> | 25 <div id="chooseEvents"> |
26 <h2>Choose Events</h2> | 26 <h2>Choose Events</h2> |
27 </div> | 27 </div> |
28 <div class="spacer"></div> | |
28 <div id="chooseTimeRange"> | 29 <div id="chooseTimeRange"> |
29 <h2>Choose Time Range</h2> | 30 <h2>Choose Time Range</h2> |
30 </div> | 31 </div> |
31 </div> | 32 </div> |
32 <div id="charts"></div> | 33 <div id="charts"></div> |
33 <div id="templates" class="hidden"> | 34 <div id="templates" hidden> |
34 <div id="labelTemplate" class="event-label"></div> | 35 <div id="labelTemplate" class="event-label"></div> |
35 <div id="checkboxTemplate" class="checkbox"> | 36 <div id="checkboxTemplate" class="checkbox"> |
36 <label> | 37 <label> |
37 <input type="checkbox"></input> | 38 <input type="checkbox"></input> |
38 <span>Change this label</span> | 39 <span>Change this label</span> |
39 </label> | 40 </label> |
40 </div> | 41 </div> |
41 <div id="radioTemplate" class="radio"> | 42 <div id="radioTemplate" class="radio"> |
42 <label> | 43 <label> |
43 <input type="radio" name="TimeRange"/> | 44 <input type="radio" name="TimeRange"/> |
44 <span>Change this label</span> | 45 <span>Change this label</span> |
45 </label> | 46 </label> |
46 </div> | 47 </div> |
47 </div> | 48 </div> |
48 <script type="text/javascript" src="chart.js"></script> | 49 <script type="text/javascript" src="chart.js"></script> |
49 </body> | 50 </body> |
50 </html> | 51 </html> |
OLD | NEW |