Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 src='//www.google.com/jsapi'></script> | |
|
ojan
2014/09/04 02:58:43
I'd rather we not include script tags at all. We u
shans
2014/09/05 00:08:19
I actually tried that initially, but it seems that
| |
| 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> |
| OLD | NEW |