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

Side by Side Diff: third_party/polymer/v0_8/components-chromium/more-routing/routing-extracted.js

Issue 1162963002: Revert "Rename polymer and cr_elements v0_8 to v1_0" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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 1
2 (function(scope) { 2 (function(scope) {
3 var MoreRouting = scope.MoreRouting = scope.MoreRouting || {}; 3 var MoreRouting = scope.MoreRouting = scope.MoreRouting || {};
4 4
5 // Route singletons. 5 // Route singletons.
6 var routesByPath = {}; 6 var routesByPath = {};
7 var pathsByName = {}; 7 var pathsByName = {};
8 8
9 // Route Management 9 // Route Management
10 10
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 set: function setDriver(newDriver) { 117 set: function setDriver(newDriver) {
118 if (driver) { 118 if (driver) {
119 console.warn('Changing routing drivers is not supported, ignoring. You sho uld have only one <more-routing-config> on the page!'); 119 console.warn('Changing routing drivers is not supported, ignoring. You sho uld have only one <more-routing-config> on the page!');
120 return; 120 return;
121 } 121 }
122 driver = newDriver; 122 driver = newDriver;
123 } 123 }
124 }); 124 });
125 125
126 })(window); 126 })(window);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698