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

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

Issue 2543323004: Rewrite LogDog log viewer app. (Closed)
Patch Set: Control all fetch sizes, fix follow on initial click, fix small fetch when auth is retrid. 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
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>
14 <script> 15 <script>
15 window.Polymer = window.Polymer || {}; 16 window.Polymer = window.Polymer || {};
16 window.Polymer.dom = 'shadow'; 17 window.Polymer.dom = 'shadow';
17 </script> 18 </script>
18 19
19 <!-- Because this project uses vulcanize this should be your only html import 20 <!-- Because this project uses vulcanize this should be your only html import
20 in this file. All other imports should go in elements.html --> 21 in this file. All other imports should go in elements.html -->
21 <link rel="import" href="elements/elements.html"> 22 <link rel="import" href="elements/elements.html">
22 23
23 <link rel="stylesheet" href="styles/main.css"> 24 <link rel="stylesheet" href="styles/main.css">
(...skipping 17 matching lines...) Expand all
41 // and give it some initial binding values 42 // and give it some initial binding values
42 // Learn more about auto-binding templates at http://goo.gl/Dx1u2g 43 // Learn more about auto-binding templates at http://goo.gl/Dx1u2g
43 var app = document.querySelector('#app'); 44 var app = document.querySelector('#app');
44 45
45 // Set up our default LogDog pRPC host. 46 // Set up our default LogDog pRPC host.
46 app.host = logdog.host; 47 app.host = logdog.host;
47 </script> 48 </script>
48 49
49 </body> 50 </body>
50 </html> 51 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698