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. --> |
11 | 11 |
12 <html> | 12 <html> |
13 <head> | 13 <head> |
14 <script type="text/javascript" | |
15 src="../../../../third_party/flot/jquery.min.js"></script> | |
16 <script type="text/javascript" | |
17 src="../../../../third_party/flot/jquery.flot.min.js"></script> | |
18 <link rel="stylesheet" type="text/css" href="chart.css"/> | 14 <link rel="stylesheet" type="text/css" href="chart.css"/> |
19 </head> | 15 </head> |
20 <body> | 16 <body> |
21 <div id="chooseBlock"> | 17 <div id="choose-block"> |
22 <div id="chooseMetrics"> | 18 <div id="choose-metrics"> |
23 <h2>Choose Metrics</h2> | 19 <h2>Choose Metrics</h2> |
24 </div> | 20 </div> |
25 <div id="chooseEvents"> | 21 <div id="choose-events"> |
26 <h2>Choose Events</h2> | 22 <h2>Choose Events</h2> |
27 </div> | 23 </div> |
28 <div id="chooseTimeRange"> | 24 <div class="spacer"></div> |
| 25 <div id="choose-time-range"> |
29 <h2>Choose Time Range</h2> | 26 <h2>Choose Time Range</h2> |
30 </div> | 27 </div> |
31 </div> | 28 </div> |
32 <div id="charts"></div> | 29 <div id="charts"></div> |
33 <div id="templates" class="hidden"> | 30 <div id="templates" hidden> |
34 <div id="labelTemplate" class="event-label"></div> | 31 <div id="label-template" class="event-label"></div> |
35 <div id="checkboxTemplate" class="checkbox"> | 32 <div id="checkbox-template" class="checkbox"> |
36 <label> | 33 <label> |
37 <input type="checkbox"></input> | 34 <input type="checkbox"></input> |
38 <span>Change this label</span> | 35 <span>Change this label</span> |
39 </label> | 36 </label> |
40 </div> | 37 </div> |
41 <div id="radioTemplate" class="radio"> | 38 <div id="radio-template" class="radio"> |
42 <label> | 39 <label> |
43 <input type="radio" name="TimeRange"/> | 40 <input type="radio" name="time-range"/> |
44 <span>Change this label</span> | 41 <span>Change this label</span> |
45 </label> | 42 </label> |
46 </div> | 43 </div> |
47 </div> | 44 </div> |
48 <script type="text/javascript" src="chart.js"></script> | 45 <script src="chrome://resources/js/cr.js"></script> |
| 46 <script src="chrome://resources/js/util.js"></script> |
| 47 <script src="jquery.js"></script> |
| 48 <script src="flot.js"></script> |
| 49 <script src="chart.js"></script> |
49 </body> | 50 </body> |
50 </html> | 51 </html> |
OLD | NEW |