Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-location/iron-loca tion.html"> | |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-location/iron-quer y-params.html"> | |
| 4 | |
| 5 <dom-module id="bookmarks-router"> | |
| 6 <template> | |
| 7 <style></style> | |
|
calamity
2017/01/18 03:37:21
Ain't got no style, don't need no <style></style>
angelayang
2017/01/18 06:34:02
Done.
| |
| 8 <iron-location path="{{path}}" query="{{query}}"></iron-location> | |
| 9 <iron-query-params params-string="{{query}}" | |
| 10 params-object="{{queryParams}}"></iron-query-params> | |
| 11 </template> | |
| 12 <script src="chrome://bookmarks/router.js"></script> | |
| 13 </dom-module> | |
| OLD | NEW |