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

Side by Side Diff: polymer_0.5.0/bower_components/app-router/src/app-router.js

Issue 786953007: npm_modules: Fork bower_components into Polymer 0.4.0 and 0.5.0 versions (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 11 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 (function(window, document) { 1 (function(window, document) {
2 // <app-route path="/path" [import="/page/cust-el.html"] [element="cust-el"] [ template]></app-route> 2 // <app-route path="/path" [import="/page/cust-el.html"] [element="cust-el"] [ template]></app-route>
3 document.registerElement('app-route', { 3 document.registerElement('app-route', {
4 prototype: Object.create(HTMLElement.prototype) 4 prototype: Object.create(HTMLElement.prototype)
5 }); 5 });
6 6
7 // <active-route></active-route> holds the active route's content when `shadow ` is not enabled 7 // <active-route></active-route> holds the active route's content when `shadow ` is not enabled
8 document.registerElement('active-route', { 8 document.registerElement('active-route', {
9 prototype: Object.create(HTMLElement.prototype) 9 prototype: Object.create(HTMLElement.prototype)
10 }); 10 });
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 } 397 }
398 } 398 }
399 399
400 return args; 400 return args;
401 }; 401 };
402 402
403 document.registerElement('app-router', { 403 document.registerElement('app-router', {
404 prototype: router 404 prototype: router
405 }); 405 });
406 })(window, document); 406 })(window, document);
OLDNEW
« no previous file with comments | « polymer_0.5.0/bower_components/app-router/src/app-router.html ('k') | polymer_0.5.0/bower_components/chai/.bower.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698