| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright 2017 The Chromium Authors. All rights reserved. | 3 Copyright 2017 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 | 7 |
| 8 <dom-module id="main-page"> | 8 <dom-module id="main-page"> |
| 9 <template> | 9 <template> |
| 10 <style> | 10 <style> |
| 11 #content { | 11 #content { |
| 12 display: inline-flex; | 12 display: inline-flex; |
| 13 display: -webkit-inline-flex; | |
| 14 flex-direction: column; | 13 flex-direction: column; |
| 15 -webkit-flex-direction: column; | |
| 16 align-items: flex-start; | 14 align-items: flex-start; |
| 17 -webkit-align-items: flex-start; | |
| 18 } | 15 } |
| 19 </style> | 16 </style> |
| 20 | 17 |
| 21 <div id="content"> | 18 <div id="content"> |
| 22 <h1>Pinpoint Main</h1> | 19 <h1>Pinpoint Main</h1> |
| 23 <a href="/jobs/">Jobs Listing Page</a> | 20 <a href="/jobs/">Jobs Listing Page</a> |
| 24 </div> | 21 </div> |
| 25 </template> | 22 </template> |
| 26 <script> | 23 <script> |
| 27 'use strict'; | 24 'use strict'; |
| 28 Polymer({ | 25 Polymer({ |
| 29 is: 'main-page', | 26 is: 'main-page', |
| 30 | 27 |
| 31 ready() { | 28 ready() { |
| 32 } | 29 } |
| 33 }); | 30 }); |
| 34 </script> | 31 </script> |
| 35 </dom-module> | 32 </dom-module> |
| OLD | NEW |