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

Side by Side Diff: chrome/browser/resources/md_bookmarks/list.html

Issue 2614703003: [MD Bookmarks] Add search. (Closed)
Patch Set: Created 3 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 <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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698