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

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

Issue 1155683008: Rename polymer and cr_elements v0_8 to v1_0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@v1
Patch Set: fix a merge mistake 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 /** 5 /**
6 * Helper functions to spruce up your templates. 6 * Helper functions to spruce up your templates.
7 * 7 *
8 * @behavior 8 * @behavior
9 */ 9 */
10 MoreRouting.TemplateHelpers = { 10 MoreRouting.TemplateHelpers = {
11 11
12 urlFor: function(pathOrName, params) { 12 urlFor: function(pathOrName, params) {
13 return MoreRouting.urlFor(pathOrName, params); 13 return MoreRouting.urlFor(pathOrName, params);
14 }, 14 },
15 15
16 isCurrentUrl: function(pathOrName, params) { 16 isCurrentUrl: function(pathOrName, params) {
17 return MoreRouting.isCurrentUrl(pathOrName, params); 17 return MoreRouting.isCurrentUrl(pathOrName, params);
18 }, 18 },
19 19
20 }; 20 };
21 21
22 })(window); 22 })(window);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698