OLD | NEW |
1 | 1 |
2 | 2 |
3 Polymer({ | 3 Polymer({ |
4 | 4 |
5 is: 'more-route', | 5 is: 'more-route', |
6 | 6 |
7 behaviors: [ | 7 behaviors: [ |
8 MoreRouting.ContextAware, | 8 MoreRouting.ContextAware, |
9 ], | 9 ], |
10 | 10 |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 navigateTo: function(params) { | 170 navigateTo: function(params) { |
171 return this.route.navigateTo(params); | 171 return this.route.navigateTo(params); |
172 }, | 172 }, |
173 | 173 |
174 isCurrentUrl: function(params) { | 174 isCurrentUrl: function(params) { |
175 return this.route.isCurrentUrl(params); | 175 return this.route.isCurrentUrl(params); |
176 }, | 176 }, |
177 | 177 |
178 }); | 178 }); |
179 | 179 |
OLD | NEW |