| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 @license | 2 @license |
| 3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. | 3 Copyright (c) 2015 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.txt | 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.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/CONTRI
BUTORS.txt | 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.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/PATEN
TS.txt | 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt |
| 9 --> | 9 --> |
| 10 | 10 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 } | 59 } |
| 60 }, { | 60 }, { |
| 61 name: 'fade-in-animation', | 61 name: 'fade-in-animation', |
| 62 node: this.$.container, | 62 node: this.$.container, |
| 63 timing: { | 63 timing: { |
| 64 delay: 50 | 64 delay: 50 |
| 65 } | 65 } |
| 66 }], | 66 }], |
| 67 | 67 |
| 68 'exit': [{ | 68 'exit': [{ |
| 69 name: 'opaque-animation', | |
| 70 node: this.$.placeholder | |
| 71 }, { | |
| 72 name: 'fade-out-animation', | 69 name: 'fade-out-animation', |
| 73 node: this.$.container, | 70 node: this.$.container, |
| 74 timing: { | 71 timing: { |
| 75 duration: 0 | 72 duration: 0 |
| 76 } | 73 } |
| 77 }, { | 74 }, { |
| 78 name: 'reverse-ripple-animation', | 75 name: 'reverse-ripple-animation', |
| 79 id: 'reverse-ripple', | 76 id: 'reverse-ripple', |
| 80 fromPage: this | 77 fromPage: this |
| 81 }] | 78 }] |
| 82 }; | 79 }; |
| 83 } | 80 } |
| 84 }, | 81 }, |
| 85 | 82 |
| 86 sharedElements: { | 83 sharedElements: { |
| 87 value: function() { | 84 value: function() { |
| 88 return { | 85 return { |
| 89 'ripple': this.$.placeholder, | 86 'ripple': this.$.placeholder, |
| 90 'reverse-ripple': this.$.placeholder | 87 'reverse-ripple': this.$.placeholder |
| 91 }; | 88 }; |
| 92 } | 89 } |
| 93 } | 90 } |
| 94 } | 91 } |
| 95 }); | 92 }); |
| 96 })(); | 93 })(); |
| 97 </script> | 94 </script> |
| OLD | NEW |