Chromium Code Reviews| 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. | |
| 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 | |
| 10 as of 6/2012 --> | |
| 11 | |
| 7 <html> | 12 <html> |
| 8 <head> | 13 <head> |
| 9 <script type="text/javascript" src="https://www.google.com/jsapi"></script> | 14 <script type="text/javascript" |
| 15 src="../../../../third_party/flot/jquery.min.js"> </script> | |
|
Dan Beam
2012/06/28 21:39:14
nit: no space before </script>
| |
| 16 <script type="text/javascript" | |
| 17 src="../../../../third_party/flot/jquery.flot.min.js"></script> | |
| 10 <link rel="stylesheet" type="text/css" href="chart.css"/> | 18 <link rel="stylesheet" type="text/css" href="chart.css"/> |
| 11 </head> | 19 </head> |
| 12 <body> | 20 <body> |
| 13 <div id="chooseBlock"> | 21 <div id="chooseBlock"> |
| 14 <div id="chooseMetrics"> | 22 <div id="chooseMetrics"> |
| 15 <h2>Choose Metrics</h2> | 23 <h2>Choose Metrics</h2> |
| 16 </div> | 24 </div> |
| 17 <div id="chooseEvents"> | 25 <div id="chooseEvents"> |
| 18 <h2>Choose Events</h2> | 26 <h2>Choose Events</h2> |
| 19 </div> | 27 </div> |
| 20 <div id="chooseTimeRange"> | 28 <div id="chooseTimeRange"> |
| 21 <h2>Choose Time Range</h2> | 29 <h2>Choose Time Range</h2> |
| 22 </div> | 30 </div> |
| 23 </div> | 31 </div> |
| 24 <div id="charts"></div> | 32 <div id="charts"></div> |
| 25 <div id="templates" class="hidden"> | 33 <div id="templates" class="hidden"> |
| 34 <div id="labelTemplate" class="event-label"> | |
|
Dan Beam
2012/06/28 21:39:14
nit: move </div> to end of same line
clintstaley
2012/06/29 22:34:20
Done, though I did this intentionally because the
| |
| 35 </div> | |
| 26 <div id="checkboxTemplate" class="checkbox"> | 36 <div id="checkboxTemplate" class="checkbox"> |
| 27 <label> | 37 <label> |
| 28 <input type="checkbox"></input> | 38 <input type="checkbox"></input> |
| 29 <span>Change this label</span> | 39 <span>Change this label</span> |
| 30 </label> | 40 </label> |
| 31 </div> | 41 </div> |
| 32 <div id="radioTemplate" class="radio"> | 42 <div id="radioTemplate" class="radio"> |
| 33 <label> | 43 <label> |
| 34 <input type="radio" name="TimeRange"/> | 44 <input type="radio" name="TimeRange"/> |
| 35 <span>Change this label</span> | 45 <span>Change this label</span> |
| 36 </label> | 46 </label> |
| 37 </div> | 47 </div> |
| 38 </div> | 48 </div> |
| 39 <script type="text/javascript" src="chart.js"></script> | 49 <script type="text/javascript" src="chart.js"></script> |
| 40 </body> | 50 </body> |
| 41 </html> | 51 </html> |
| OLD | NEW |