Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(31)

Side by Side Diff: third_party/polymer/v1_0/components-chromium/more-routing/more-route-selector-extracted.js

Issue 1287713002: [MD settings] merge polymer 1.0.11; hack for settings checkbox (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1
2 Polymer({ 1 Polymer({
3 2
4 is: 'more-route-selector', 3 is: 'more-route-selector',
5 4
6 behaviors: [ 5 behaviors: [
7 MoreRouting.ContextAware, 6 MoreRouting.ContextAware,
8 ], 7 ],
9 8
10 properties: { 9 properties: {
11 10
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 return null; 160 return null;
162 } 161 }
163 var expression = item.getAttribute(this.routeAttribute); 162 var expression = item.getAttribute(this.routeAttribute);
164 var route = MoreRouting.getRoute(expression, this.parentRoute); 163 var route = MoreRouting.getRoute(expression, this.parentRoute);
165 // Associate the route w/ its element while we're here. 164 // Associate the route w/ its element while we're here.
166 item.moreRouteContext = route; 165 item.moreRouteContext = route;
167 166
168 return route; 167 return route;
169 }, 168 },
170 169
171 }); 170 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698