OLD | NEW |
1 | |
2 (function() { | 1 (function() { |
3 | 2 |
4 Polymer({ | 3 Polymer({ |
5 | 4 |
6 is: 'neon-animated-pages', | 5 is: 'neon-animated-pages', |
7 | 6 |
8 behaviors: [ | 7 behaviors: [ |
9 Polymer.IronResizableBehavior, | 8 Polymer.IronResizableBehavior, |
10 Polymer.IronSelectableBehavior, | 9 Polymer.IronSelectableBehavior, |
11 Polymer.NeonAnimationRunnerBehavior | 10 Polymer.NeonAnimationRunnerBehavior |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 _notifyPageResize: function() { | 153 _notifyPageResize: function() { |
155 var selectedPage = this.selectedItem; | 154 var selectedPage = this.selectedItem; |
156 this.resizerShouldNotify = function(element) { | 155 this.resizerShouldNotify = function(element) { |
157 return element == selectedPage; | 156 return element == selectedPage; |
158 } | 157 } |
159 this.notifyResize(); | 158 this.notifyResize(); |
160 } | 159 } |
161 | 160 |
162 }) | 161 }) |
163 | 162 |
164 })(); | 163 })(); |
OLD | NEW |