OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE HTML> | |
2 <html> | |
3 <head> | |
4 <meta charset="utf-8"> | |
5 <title id="power" i18n-content="titleText"></title> | |
arv (Not doing code reviews)
2014/01/06 23:29:57
This ID is not needed. You can do `document.title
| |
6 <link rel="stylesheet" href="chrome://power/power.css"> | |
7 <script src="chrome://resources/js/load_time_data.js"></script> | |
8 <script src="chrome://resources/js/util.js"></script> | |
9 <script src="chrome://power/strings.js"></script> | |
10 <script src="chrome://power/power.js"></script> | |
11 <head> | |
Daniel Erat
2014/01/06 23:02:41
</head>
(if this was copied from somewhere that a
Siva Chandra
2014/01/07 01:19:19
Done.
| |
12 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> | |
13 <div id="main-layout"> | |
14 <div id="battery-charge-section"> | |
15 <h3 i18n-content="batteryChargeHeader"></h3> | |
16 <div class="plot-canvas-div"> | |
17 <canvas id="battery-charge-canvas" width=600 height=200></canvas> | |
arv (Not doing code reviews)
2014/01/06 23:29:57
Missing quotes around the attributes
Siva Chandra
2014/01/07 01:19:19
Done.
| |
18 </div> | |
19 <button id="battery-charge-reload-button" class="reload-button" | |
20 i18n-content="reloadButton"> | |
21 </button> | |
22 </div> | |
23 | |
24 <hr class="section-boundary"> | |
25 </div> | |
26 <script src="chrome://resources/js/i18n_template2.js"></script> | |
27 </body> | |
28 </html> | |
OLD | NEW |