| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 Copyright (C) 2011 Google Inc. All rights reserved. | 2 Copyright 2014 The Chromium Authors. All rights reserved. |
| 3 | 3 Use of this source code is governed by a BSD-style license that can be |
| 4 Redistribution and use in source and binary forms, with or without | 4 found in the LICENSE file. |
| 5 modification, are permitted provided that the following conditions | |
| 6 are met: | |
| 7 1. Redistributions of source code must retain the above copyright | |
| 8 notice, this list of conditions and the following disclaimer. | |
| 9 2. Redistributions in binary form must reproduce the above copyright | |
| 10 notice, this list of conditions and the following disclaimer in the | |
| 11 documentation and/or other materials provided with the distribution. | |
| 12 | |
| 13 THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' | |
| 14 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, | |
| 15 THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | |
| 16 PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS | |
| 17 BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
| 18 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
| 19 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
| 20 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
| 21 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
| 22 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF | |
| 23 THE POSSIBILITY OF SUCH DAMAGE. | |
| 24 | 5 |
| 25 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 |
| 26 James, a web developer from Birmingham, UK. | 7 James, a web developer from Birmingham, UK. |
| 27 --> | 8 --> |
| 28 | |
| 29 <!DOCTYPE html> | 9 <!DOCTYPE html> |
| 30 <head> | 10 <head> |
| 31 <title>Sheriff-O-Matic</title> | 11 <title>Sheriff-O-Matic</title> |
| 12 <meta charset="utf-8"> |
| 32 <meta name="viewport" content="width=device-width, user-scalable=no"> | 13 <meta name="viewport" content="width=device-width, user-scalable=no"> |
| 33 <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"> |
| 34 <style> | 15 <style> |
| 35 html { | 16 html { |
| 36 overflow-y: scroll; | 17 overflow-y: scroll; |
| 37 } | 18 } |
| 38 | |
| 39 body { | 19 body { |
| 40 font-family: 'Open Sans'; | 20 font-family: 'Open Sans'; |
| 41 font-size: 14px; | 21 font-size: 14px; |
| 42 margin: 0px; | 22 margin: 0px; |
| 43 } | 23 } |
| 44 </style> | 24 </style> |
| 45 <script src="bower_components/platform/platform.js"></script> | 25 <script src="bower_components/platform/platform.js"></script> |
| 46 <link rel="import" href="bower_components/polymer/polymer.html"> | 26 <link rel="import" href="bower_components/polymer/polymer.html"> |
| 47 <link rel="import" href="ui/ct-sheriff-o-matic.html"> | 27 <link rel="import" href="ui/ct-sheriff-o-matic.html"> |
| 48 <ct-sheriff-o-matic></ct-sheriff-o-matic> | 28 <ct-sheriff-o-matic></ct-sheriff-o-matic> |
| 49 </head> | 29 </head> |
| OLD | NEW |