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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/more-routing/more-route-template-helpers-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 (function(scope) { 1 (function(scope) {
3 var MoreRouting = scope.MoreRouting = scope.MoreRouting || {}; 2 var MoreRouting = scope.MoreRouting = scope.MoreRouting || {};
4 3
5 /** 4 /**
6 * Helper functions to spruce up your templates. 5 * Helper functions to spruce up your templates.
7 * 6 *
8 * @behavior 7 * @behavior
9 */ 8 */
10 MoreRouting.TemplateHelpers = { 9 MoreRouting.TemplateHelpers = {
11 10
12 urlFor: function(pathOrName, params) { 11 urlFor: function(pathOrName, params) {
13 return MoreRouting.urlFor(pathOrName, params); 12 return MoreRouting.urlFor(pathOrName, params);
14 }, 13 },
15 14
16 isCurrentUrl: function(pathOrName, params) { 15 isCurrentUrl: function(pathOrName, params) {
17 return MoreRouting.isCurrentUrl(pathOrName, params); 16 return MoreRouting.isCurrentUrl(pathOrName, params);
18 }, 17 },
19 18
20 }; 19 };
21 20
22 })(window); 21 })(window);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698