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

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

Issue 2639893006: [MD Bookmarks] Add lines between items and no search results message. (Closed)
Patch Set: Fix css on separator line 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/resources/md_bookmarks/item.js ('k') | chrome/browser/resources/md_bookmarks/list.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 2cc1dc0034202faea48c5b2b4d977dcf97bf77a8..ca9437981bbf336b71b11e43631f9762abd6f80a 100644
--- a/chrome/browser/resources/md_bookmarks/list.html
+++ b/chrome/browser/resources/md_bookmarks/list.html
@@ -67,14 +67,14 @@
</paper-button>
</div>
</dialog>
- <div id="bookmarksCard" hidden$="[[isListEmpty_(displayedList.length)]]">
+ <div id="bookmarksCard" hidden$="[[isEmptyList_(displayedList.length)]]">
<template is="dom-repeat" items="[[displayedList]]" as="item">
<bookmarks-item item="[[item]]"></bookmarks-item>
</template>
</div>
<div class="centered-message"
- hidden$="[[!isListEmpty_(displayedList.length)]]">
- $i18n{emptyList}
+ hidden$="[[!isEmptyList_(displayedList.length)]]">
+ [[emptyListMessage_(searchTerm)]]
</div>
</template>
<script src="chrome://bookmarks/list.js"></script>
« no previous file with comments | « chrome/browser/resources/md_bookmarks/item.js ('k') | chrome/browser/resources/md_bookmarks/list.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698