| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 Copyright 2016 The LUCI Authors. All rights reserved. | 2 Copyright 2016 The LUCI Authors. All rights reserved. |
| 3 Use of this source code is governed under the Apache License, Version 2.0 | 3 Use of this source code is governed under the Apache License, Version 2.0 |
| 4 that can be found in the LICENSE file. | 4 that can be found in the LICENSE file. |
| 5 --> | 5 --> |
| 6 | 6 |
| 7 <html> | 7 <html> |
| 8 <head> | 8 <head> |
| 9 <!-- Chrome for Android theme color --> | 9 <!-- Chrome for Android theme color --> |
| 10 <meta name="theme-color" content="#2E3AA1"> | 10 <meta name="theme-color" content="#2E3AA1"> |
| 11 | 11 |
| 12 <!-- Setup Polymer --> | 12 <!-- Setup Polymer --> |
| 13 <script src="inc/bower_components/webcomponentsjs/webcomponents-lite.min.js"> | 13 <script src="inc/bower_components/webcomponentsjs/webcomponents-lite.min.js"> |
| 14 </script> | |
| 15 <script> | 14 <script> |
| 16 window.Polymer = window.Polymer || {}; | 15 window.Polymer = window.Polymer || {}; |
| 17 window.Polymer.dom = 'shadow'; | 16 window.Polymer.dom = 'shadow'; |
| 18 </script> | 17 </script> |
| 19 | 18 |
| 20 <!-- Because this project uses vulcanize this should be your only html import | 19 <!-- Because this project uses vulcanize this should be your only html import |
| 21 in this file. All other imports should go in elements.html --> | 20 in this file. All other imports should go in elements.html --> |
| 22 <link rel="import" href="elements/elements.html"> | 21 <link rel="import" href="elements/elements.html"> |
| 23 | 22 |
| 24 <link rel="stylesheet" href="styles/main.css"> | 23 <link rel="stylesheet" href="styles/main.css"> |
| (...skipping 17 matching lines...) Expand all Loading... |
| 42 // and give it some initial binding values | 41 // and give it some initial binding values |
| 43 // Learn more about auto-binding templates at http://goo.gl/Dx1u2g | 42 // Learn more about auto-binding templates at http://goo.gl/Dx1u2g |
| 44 var app = document.querySelector('#app'); | 43 var app = document.querySelector('#app'); |
| 45 | 44 |
| 46 // Set up our default LogDog pRPC host. | 45 // Set up our default LogDog pRPC host. |
| 47 app.host = logdog.host; | 46 app.host = logdog.host; |
| 48 </script> | 47 </script> |
| 49 | 48 |
| 50 </body> | 49 </body> |
| 51 </html> | 50 </html> |
| OLD | NEW |