| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action
_menu.html"> | 2 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action
_menu.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> |
| 5 <link rel="import" href="chrome://bookmarks/item.html"> | 5 <link rel="import" href="chrome://bookmarks/item.html"> |
| 6 <link rel="import" href="chrome://bookmarks/shared_style.html"> | 6 <link rel="import" href="chrome://bookmarks/shared_style.html"> |
| 7 | 7 |
| 8 <dom-module id="bookmarks-list"> | 8 <dom-module id="bookmarks-list"> |
| 9 <template> | 9 <template> |
| 10 <style include="shared-style"> | 10 <style include="shared-style"> |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 </button> | 27 </button> |
| 28 <button class="dropdown-item" on-tap="onCopyURLTap_"> | 28 <button class="dropdown-item" on-tap="onCopyURLTap_"> |
| 29 $i18n{menuCopyURL} | 29 $i18n{menuCopyURL} |
| 30 </button> | 30 </button> |
| 31 <button class="dropdown-item" on-tap="onDeleteTap_"> | 31 <button class="dropdown-item" on-tap="onDeleteTap_"> |
| 32 $i18n{menuDelete} | 32 $i18n{menuDelete} |
| 33 </button> | 33 </button> |
| 34 </dialog> | 34 </dialog> |
| 35 <div id="bookmarks-card"> | 35 <div id="bookmarks-card"> |
| 36 <!-- TODO(angelayang): handle empty folders --> | 36 <!-- TODO(angelayang): handle empty folders --> |
| 37 <template is="dom-repeat" items="[[selectedNode.children]]" as="item"> | 37 <template is="dom-repeat" items="[[displayedList_]]" as="item"> |
| 38 <bookmarks-item item="[[item]]"></bookmarks-item> | 38 <bookmarks-item item="[[item]]"></bookmarks-item> |
| 39 </template> | 39 </template> |
| 40 </div> | 40 </div> |
| 41 </template> | 41 </template> |
| 42 <script src="chrome://bookmarks/list.js"></script> | 42 <script src="chrome://bookmarks/list.js"></script> |
| 43 </dom-module> | 43 </dom-module> |
| OLD | NEW |