| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <title>Swarming Status</title> | |
| 5 <script src="/third_party/webcomponentsjs/webcomponents.min.js"></script> | |
| 6 <script> | |
| 7 (function() { | |
| 8 var DIMENSIONS = {{dimensions|safe}}; | |
| 9 for (var i = 0; i < DIMENSIONS.length; ++i) { | |
| 10 DIMENSIONS[i] = JSON.parse(DIMENSIONS[i]); | |
| 11 } | |
| 12 window.onload = function() { | |
| 13 var app = document.createElement('stats-app'); | |
| 14 app.dimensions = DIMENSIONS; | |
| 15 document.getElementById('container').appendChild(app); | |
| 16 }; | |
| 17 } ()); | |
| 18 </script> | |
| 19 </head> | |
| 20 <body> | |
| 21 <div id="container"></div> | |
| 22 </body> | |
| 23 </html> | |
| OLD | NEW |