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

Side by Side Diff: Tools/GardeningServer/sheriff-o-matic.html

Issue 476903004: [sheriff-o-matic]: Basic trooper display for sheriff-o-matic. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 months 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 2014 The Chromium Authors. All rights reserved. 2 Copyright 2014 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 5
6 The favicons are from the awesome famfamfam.com, which is the website of Mark 6 The favicons are from the awesome famfamfam.com, which is the website of Mark
7 James, a web developer from Birmingham, UK. 7 James, a web developer from Birmingham, UK.
8 --> 8 -->
9 <!DOCTYPE html> 9 <!DOCTYPE html>
10 <head> 10 <head>
11 <title>Sheriff-O-Matic</title> 11 <title>Sheriff-O-Matic</title>
12 <meta charset="utf-8"> 12 <meta charset="utf-8">
13 <meta name="viewport" content="width=device-width, user-scalable=no"> 13 <meta name="viewport" content="width=device-width, user-scalable=no">
14 <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:40 0,700"> 14 <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:40 0,700">
15 <style> 15 <style>
16 html, body { 16 html, body {
17 height: 100%; 17 height: 100%;
18 } 18 }
19 body { 19 body {
20 font-family: 'Open Sans'; 20 font-family: 'Open Sans';
21 font-size: 14px; 21 font-size: 14px;
22 margin: 0px; 22 margin: 0px;
23 } 23 }
24 </style> 24 </style>
25 <script type='text/javascript' src='//www.google.com/jsapi'></script>
ojan 2014/09/02 02:35:11 Nit: Leave out the type attribute. It doesn't do a
shans 2014/09/04 01:59:42 Done.
26 <script>
27 google.load("visualization", "1", {packages: ["corechart"]});
28 </script>
25 <script src="bower_components/platform/platform.js"></script> 29 <script src="bower_components/platform/platform.js"></script>
26 <link rel="import" href="bower_components/polymer/polymer.html"> 30 <link rel="import" href="bower_components/polymer/polymer.html">
27 <link rel="import" href="ui/ct-sheriff-o-matic.html"> 31 <link rel="import" href="ui/ct-sheriff-o-matic.html">
28 <ct-sheriff-o-matic></ct-sheriff-o-matic> 32 <ct-sheriff-o-matic></ct-sheriff-o-matic>
29 </head> 33 </head>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698