| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. | 3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. |
| 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE | 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE |
| 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS | 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS |
| 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS | 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS |
| 7 Code distributed by Google as part of the polymer project is also | 7 Code distributed by Google as part of the polymer project is also |
| 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS | 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS |
| 9 --> | 9 --> |
| 10 <html> | 10 <html> |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 <link rel="import" href="../sampler-scaffold/sampler-scaffold.html"> | 21 <link rel="import" href="../sampler-scaffold/sampler-scaffold.html"> |
| 22 <link rel="import" href="../core-item/core-item.html"> | 22 <link rel="import" href="../core-item/core-item.html"> |
| 23 <link rel="import" href="../core-menu/core-submenu.html"> | 23 <link rel="import" href="../core-menu/core-submenu.html"> |
| 24 | 24 |
| 25 <style> | 25 <style> |
| 26 | 26 |
| 27 body { | 27 body { |
| 28 font-family: sans-serif; | 28 font-family: sans-serif; |
| 29 color: #333; | 29 color: #333; |
| 30 margin: 0; | 30 margin: 0; |
| 31 -webkit-user-select: none; | |
| 32 -moz-user-select: none; | |
| 33 -ms-user-select: none; | |
| 34 user-select: none; | |
| 35 -webkit-tap-highlight-color: rgba(0,0,0,0); | 31 -webkit-tap-highlight-color: rgba(0,0,0,0); |
| 36 -webkit-touch-callout: none; | 32 -webkit-touch-callout: none; |
| 37 } | 33 } |
| 38 | 34 |
| 39 </style> | 35 </style> |
| 40 | 36 |
| 41 </head> | 37 </head> |
| 42 <body unresolved> | 38 <body unresolved> |
| 43 | 39 |
| 44 <sampler-scaffold label="Core Elements"> | 40 <sampler-scaffold label="Core Elements"> |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ | 100 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ |
| 105 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o
), | 101 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o
), |
| 106 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a
,m) | 102 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a
,m) |
| 107 })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); | 103 })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); |
| 108 | 104 |
| 109 ga('create', 'UA-39334307-1', 'auto'); | 105 ga('create', 'UA-39334307-1', 'auto'); |
| 110 ga('send', 'pageview'); | 106 ga('send', 'pageview'); |
| 111 </script> | 107 </script> |
| 112 </body> | 108 </body> |
| 113 </html> | 109 </html> |
| OLD | NEW |