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

Unified Diff: chrome/browser/resources/bookmark_manager/main.html

Issue 1816001: Bookmark manager: Tweak the top bar behavior a bit.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Removed useless call to preventDefault Created 10 years, 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/bookmark_manager/main.html
===================================================================
--- chrome/browser/resources/bookmark_manager/main.html (revision 45941)
+++ chrome/browser/resources/bookmark_manager/main.html (working copy)
@@ -39,7 +39,6 @@
<script src="chrome://resources/js/localstrings.js"></script>
<script src="chrome://resources/js/i18ntemplate.js"></script>
-
<script src="js/bmm/treeiterator.js"></script>
<script src="js/bmm.js"></script>
<script src="js/bmm/bookmarklist.js"></script>
@@ -60,7 +59,7 @@
<body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
<div class="header">
- <button onclick="resetSearch()" class="logo" tabindex=3></button>
+ <button class="logo" tabindex=3></button>
<form onsubmit="setSearch(this.term.value); return false;"
class="form">
<input type="search" id="term" tabindex=1 autofocus
@@ -270,28 +269,34 @@
* @para {string} searchText The text to search for.
*/
function setSearch(searchText) {
- delete bmm.treeLookup[searchTreeItem.bookmarkId];
- var id = searchTreeItem.bookmarkId = 'q=' + searchText;
- bmm.treeLookup[searchTreeItem.bookmarkId] = searchTreeItem;
+ if (searchText) {
+ // Only update search item if we have a search term. We never want the
+ // search item to be for an empty search.
+ delete bmm.treeLookup[searchTreeItem.bookmarkId];
+ var id = searchTreeItem.bookmarkId = 'q=' + searchText;
+ bmm.treeLookup[searchTreeItem.bookmarkId] = searchTreeItem;
+ }
+
$('term').value = searchText;
+
if (searchText) {
tree.add(searchTreeItem);
tree.selectedItem = searchTreeItem;
} else {
- tree.remove(searchTreeItem);
+ // Go "home".
tree.selectedItem = tree.items[0];
+ id = tree.selectedItem.bookmarkId;
}
+
navigateTo(id);
}
-/**
- * Clears the search.
- */
-function resetSearch() {
- $('term').value = '';
+// Handle the logo button UI.
+// When the user clicks the button we should navigate "home" and focus the list
+document.querySelector('button.logo').onclick = function(e) {
setSearch('');
- $('term').focus();
-}
+ $('list').focus();
+};
/**
* Called when the title of a bookmark changes.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698