| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 @license | 2 @license |
| 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://polym
er.github.io/LICENSE.txt | 4 This code may only be used under the BSD style license found at http://polym
er.github.io/LICENSE.txt |
| 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS
.txt | 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS
.txt |
| 6 The complete set of contributors may be found at http://polymer.github.io/CO
NTRIBUTORS.txt | 6 The complete set of contributors may be found at http://polymer.github.io/CO
NTRIBUTORS.txt |
| 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/P
ATENTS.txt | 8 subject to an additional IP rights grant found at http://polymer.github.io/P
ATENTS.txt |
| 9 --> | 9 --> |
| 10 <!doctype html> | 10 <!doctype html> |
| 11 <html> | 11 <html> |
| 12 <head> | 12 <head> |
| 13 | 13 |
| 14 <meta charset="utf-8"> | 14 <meta charset="utf-8"> |
| 15 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | 15 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
| 16 | 16 |
| 17 <title>core-pages</title> | 17 <title>core-pages</title> |
| 18 | 18 |
| 19 <script src="../platform/platform.js"></script> | 19 <script src="../webcomponentsjs/webcomponents.js"></script> |
| 20 | 20 |
| 21 <link rel="import" href="core-pages.html"> | 21 <link rel="import" href="core-pages.html"> |
| 22 | 22 |
| 23 <style> | 23 <style> |
| 24 | 24 |
| 25 html, body { | 25 html, body { |
| 26 height: 100%; | 26 height: 100%; |
| 27 } | 27 } |
| 28 | 28 |
| 29 body { | 29 body { |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 this.selectedItem.classList.remove('begin'); | 127 this.selectedItem.classList.remove('begin'); |
| 128 } else if (this.selectedIndex == this.items.length - 1) { | 128 } else if (this.selectedIndex == this.items.length - 1) { |
| 129 this.items[0].classList.add('begin'); | 129 this.items[0].classList.add('begin'); |
| 130 } | 130 } |
| 131 }); | 131 }); |
| 132 }; | 132 }; |
| 133 </script> | 133 </script> |
| 134 | 134 |
| 135 </body> | 135 </body> |
| 136 </html> | 136 </html> |
| OLD | NEW |