Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(629)

Side by Side Diff: web/apps/logdog-view/index.html

Issue 2570963003: Revert of Rewrite LogDog log viewer app. (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « web/apps/logdog-view/inc ('k') | web/apps/logdog-view/scripts-ts/main.ts » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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>
OLDNEW
« no previous file with comments | « web/apps/logdog-view/inc ('k') | web/apps/logdog-view/scripts-ts/main.ts » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698