OLD | NEW |
| (Empty) |
1 <!doctype html> | |
2 <!-- | |
3 Copyright 2013 The Polymer Authors. All rights reserved. | |
4 Use of this source code is governed by a BSD-style | |
5 license that can be found in the LICENSE file. | |
6 --> | |
7 <html> | |
8 <head> | |
9 <title>paper-item</title> | |
10 <meta charset="utf-8"> | |
11 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
12 <meta name="viewport" content="width=device-width, initial-scale=1, user-scala
ble=no"> | |
13 <script src="../platform/platform.js"></script> | |
14 <link href="../font-roboto/roboto.html" rel="import"> | |
15 <link href="../core-icons/core-icons.html" rel="import"> | |
16 <link href="../core-menu/core-menu.html" rel="import"> | |
17 <link href="paper-item.html" rel="import"> | |
18 <style shim-shadowdom> | |
19 body { | |
20 font-family: RobotoDraft, 'Helvetica Neue', Helvetica, Arial; | |
21 } | |
22 | |
23 paper-item { | |
24 max-width: 320px; | |
25 } | |
26 </style> | |
27 </head> | |
28 <body unresolved> | |
29 <core-menu> | |
30 <paper-item icon="refresh" label="Item 1"></paper-item> | |
31 <paper-item label="Item 2"></paper-item> | |
32 <paper-item label="Item with a link"> | |
33 <a href="http://www.polymer-project.org" target="_self"></a> | |
34 </paper-item> | |
35 </core-menu> | |
36 </body> | |
37 </html> | |
OLD | NEW |