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

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

Powered by Google App Engine
This is Rietveld 408576698