| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <html i18n-values="dir:textdirection;"> | 2 <html i18n-values="dir:textdirection;"> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <title i18n-content="title"></title> | 5 <title i18n-content="title"></title> |
| 6 <link rel="icon" href="../../app/theme/downloads_favicon.png"> | 6 <link rel="icon" href="../../app/theme/downloads_favicon.png"> |
| 7 <style> | 7 <style> |
| 8 body { | 8 body { |
| 9 background-color: white; | 9 background-color: white; |
| 10 color: black; | 10 color: black; |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 padding: 8px; | 184 padding: 8px; |
| 185 background-color: #ebeff9; | 185 background-color: #ebeff9; |
| 186 margin-right: 4px; | 186 margin-right: 4px; |
| 187 } | 187 } |
| 188 | 188 |
| 189 .footer { | 189 .footer { |
| 190 height: 24px; | 190 height: 24px; |
| 191 } | 191 } |
| 192 | 192 |
| 193 </style> | 193 </style> |
| 194 <script src="local_strings.js"></script> | 194 <script src="shared/js/local_strings.js"></script> |
| 195 <script> | 195 <script> |
| 196 | 196 |
| 197 /////////////////////////////////////////////////////////////////////////////// | 197 /////////////////////////////////////////////////////////////////////////////// |
| 198 // Helper functions | 198 // Helper functions |
| 199 function $(o) {return document.getElementById(o);} | 199 function $(o) {return document.getElementById(o);} |
| 200 | 200 |
| 201 function bind(fn, selfObj, var_args) { | 201 function bind(fn, selfObj, var_args) { |
| 202 var boundArgs = Array.prototype.slice.call(arguments, 2); | 202 var boundArgs = Array.prototype.slice.call(arguments, 2); |
| 203 return function() { | 203 return function() { |
| 204 var args = Array.prototype.slice.call(arguments); | 204 var args = Array.prototype.slice.call(arguments); |
| (...skipping 567 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 772 <div id="downloads-summary"> | 772 <div id="downloads-summary"> |
| 773 <span id="downloads-summary-text" i18n-content="downloads">Downloads</span> | 773 <span id="downloads-summary-text" i18n-content="downloads">Downloads</span> |
| 774 <a id="clear-all" href="" onclick="clearAll();" i18n-content="clear_all">Cle
ar All</a> | 774 <a id="clear-all" href="" onclick="clearAll();" i18n-content="clear_all">Cle
ar All</a> |
| 775 </div> | 775 </div> |
| 776 <div id="downloads-display"></div> | 776 <div id="downloads-display"></div> |
| 777 </div> | 777 </div> |
| 778 <div class="footer"> | 778 <div class="footer"> |
| 779 </div> | 779 </div> |
| 780 </body> | 780 </body> |
| 781 </html> | 781 </html> |
| OLD | NEW |