Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> | 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/fade-in-animation.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/fade-in-animation.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/fade-out-animation.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/fade-out-animation.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/slide-from-left-animation.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/slide-from-left-animation.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/slide-from-right-animation.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/slide-from-right-animation.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/slide-left-animation.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/slide-left-animation.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/slide-right-animation.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/slide-right-animation.html"> |
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> |
| 10 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani mated-pages.html"> | 10 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani mated-pages.html"> |
| 11 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani mation-runner-behavior.html"> | 11 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani mation-runner-behavior.html"> |
| 12 | 12 |
| 13 <dom-module id="cr-settings-animated-pages"> | 13 <dom-module id="cr-settings-animated-pages"> |
| 14 <link rel="import" type="css" href="settings_animated_pages.css"> | 14 <link rel="import" type="css" href="settings_animated_pages.css"> |
| 15 <template> | 15 <template> |
| 16 <neon-animated-pages id="animatedPages" attr-for-selected="id" | 16 <neon-animated-pages id="animatedPages" attr-for-selected="id"> |
|
tommycli
2015/09/28 21:15:01
Don't select a page until route is updated. Stops
| |
| 17 selected="main"> | |
| 18 <content select="*"></content> | 17 <content select="*"></content> |
| 19 </neon-animated-pages> | 18 </neon-animated-pages> |
| 20 </template> | 19 </template> |
| 21 <script src="settings_animated_pages.js"></script> | 20 <script src="settings_animated_pages.js"></script> |
| 22 </dom-module> | 21 </dom-module> |
| OLD | NEW |