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

Side by Side Diff: third_party/polymer/v0_8/components-chromium/more-routing/params-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 MoreRouting.Params = Params; 4 MoreRouting.Params = Params;
5 5
6 /** 6 /**
7 * A collection of route parameters and their values, with nofications. 7 * A collection of route parameters and their values, with nofications.
8 * 8 *
9 * Params prefixed by `__` are reserved. 9 * Params prefixed by `__` are reserved.
10 * 10 *
(...skipping 26 matching lines...) Expand all
37 set: function(value) { 37 set: function(value) {
38 if (state[param] === value) return; 38 if (state[param] === value) return;
39 state[param] = value; 39 state[param] = value;
40 model.__notify(param, value); 40 model.__notify(param, value);
41 }, 41 },
42 }); 42 });
43 }); 43 });
44 } 44 }
45 45
46 })(window); 46 })(window);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698