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/cr_elements/cr_lazy_render/cr_lazy_r
ender.html"> | 3 <link rel="import" href="chrome://resources/cr_elements/cr_lazy_render/cr_lazy_r
ender.html"> |
4 <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-icon-button/paper
-icon-button-light.html"> |
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> |
6 <link rel="import" href="chrome://bookmarks/edit_dialog.html"> | 6 <link rel="import" href="chrome://bookmarks/edit_dialog.html"> |
7 <link rel="import" href="chrome://bookmarks/item.html"> | 7 <link rel="import" href="chrome://bookmarks/item.html"> |
8 <link rel="import" href="chrome://bookmarks/shared_style.html"> | 8 <link rel="import" href="chrome://bookmarks/shared_style.html"> |
9 <link rel="import" href="chrome://bookmarks/store_client.html"> | 9 <link rel="import" href="chrome://bookmarks/store_client.html"> |
10 <link rel="import" href="chrome://bookmarks/util.html"> | 10 <link rel="import" href="chrome://bookmarks/util.html"> |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 <button class="dropdown-item" on-tap="onCopyURLTap_" | 42 <button class="dropdown-item" on-tap="onCopyURLTap_" |
43 hidden$="[[!menuItem_.url]]"> | 43 hidden$="[[!menuItem_.url]]"> |
44 $i18n{menuCopyURL} | 44 $i18n{menuCopyURL} |
45 </button> | 45 </button> |
46 <button class="dropdown-item" on-tap="onDeleteTap_"> | 46 <button class="dropdown-item" on-tap="onDeleteTap_"> |
47 $i18n{menuDelete} | 47 $i18n{menuDelete} |
48 </button> | 48 </button> |
49 </dialog> | 49 </dialog> |
50 <div id="bookmarksCard" hidden$="[[isEmptyList_(displayedList_.length)]]"> | 50 <div id="bookmarksCard" hidden$="[[isEmptyList_(displayedList_.length)]]"> |
51 <template is="dom-repeat" items="[[displayedList_]]" as="id"> | 51 <template is="dom-repeat" items="[[displayedList_]]" as="id"> |
52 <bookmarks-item item-id="[[id]]"> | 52 <bookmarks-item item-id="[[id]]" draggable="true"> |
53 </bookmarks-item> | 53 </bookmarks-item> |
54 </template> | 54 </template> |
55 </div> | 55 </div> |
56 <div class="centered-message" | 56 <div class="centered-message" |
57 hidden$="[[!isEmptyList_(displayedList_.length)]]"> | 57 hidden$="[[!isEmptyList_(displayedList_.length)]]"> |
58 [[emptyListMessage_(searchTerm_)]] | 58 [[emptyListMessage_(searchTerm_)]] |
59 </div> | 59 </div> |
60 <template is="cr-lazy-render" id="editDialog"> | 60 <template is="cr-lazy-render" id="editDialog"> |
61 <bookmarks-edit-dialog></bookmarks-edit-dialog> | 61 <bookmarks-edit-dialog></bookmarks-edit-dialog> |
62 </template> | 62 </template> |
63 </template> | 63 </template> |
64 <script src="chrome://bookmarks/list.js"></script> | 64 <script src="chrome://bookmarks/list.js"></script> |
65 </dom-module> | 65 </dom-module> |
OLD | NEW |