| Index: chrome/browser/resources/md_bookmarks/list.html
|
| diff --git a/chrome/browser/resources/md_bookmarks/list.html b/chrome/browser/resources/md_bookmarks/list.html
|
| index 19b6d9f0710d74e61ba05a12cc91dda6d25a6806..335f6eeacd490cc15ce7a45a9a6deab0cec06c34 100644
|
| --- a/chrome/browser/resources/md_bookmarks/list.html
|
| +++ b/chrome/browser/resources/md_bookmarks/list.html
|
| @@ -8,6 +8,8 @@
|
| <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.html">
|
| <link rel="import" href="chrome://bookmarks/item.html">
|
| <link rel="import" href="chrome://bookmarks/shared_style.html">
|
| +<link rel="import" href="chrome://bookmarks/store_client.html">
|
| +<link rel="import" href="chrome://bookmarks/util.html">
|
|
|
| <dom-module id="bookmarks-list">
|
| <template>
|
| @@ -71,9 +73,8 @@
|
| </div>
|
| </dialog>
|
| <div id="bookmarksCard" hidden$="[[isEmptyList_(displayedList.length)]]">
|
| - <template is="dom-repeat" items="[[displayedList]]" as="item">
|
| - <bookmarks-item item="[[item]]"
|
| - is-selected-item="[[item.isSelectedItem]]">
|
| + <template is="dom-repeat" items="[[displayedList]]" as="id">
|
| + <bookmarks-item item-id="[[id]]">
|
| </bookmarks-item>
|
| </template>
|
| </div>
|
|
|