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

Unified Diff: chrome/browser/resources/md_bookmarks/list.html

Issue 2740863003: MD Bookmarks: Implement search and selection in new data flow system (Closed)
Patch Set: Remove selection from this CL Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
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 335f6eeacd490cc15ce7a45a9a6deab0cec06c34..09d90931fa4d953e1282d73a39f80a8e412ab9cc 100644
--- a/chrome/browser/resources/md_bookmarks/list.html
+++ b/chrome/browser/resources/md_bookmarks/list.html
@@ -72,15 +72,15 @@
</paper-button>
</div>
</dialog>
- <div id="bookmarksCard" hidden$="[[isEmptyList_(displayedList.length)]]">
- <template is="dom-repeat" items="[[displayedList]]" as="id">
+ <div id="bookmarksCard" hidden$="[[isEmptyList_(displayedList_.length)]]">
+ <template is="dom-repeat" items="[[displayedList_]]" as="id">
<bookmarks-item item-id="[[id]]">
</bookmarks-item>
</template>
</div>
<div class="centered-message"
- hidden$="[[!isEmptyList_(displayedList.length)]]">
- [[emptyListMessage_(searchTerm)]]
+ hidden$="[[!isEmptyList_(displayedList_.length)]]">
+ [[emptyListMessage_(searchTerm_)]]
</div>
</template>
<script src="chrome://bookmarks/list.js"></script>

Powered by Google App Engine
This is Rietveld 408576698