diff options
author | arv@chromium.org <arv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-12 19:36:22 +0000 |
---|---|---|
committer | arv@chromium.org <arv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-12 19:36:22 +0000 |
commit | f34b7c5bab399a1cb348e29306b0961fb572f48e (patch) | |
tree | 037894f6ba7fdafc15abf338b12df14619b371fb | |
parent | b0f93406e485bd605c323e9d386fae0e6b86d50c (diff) | |
download | chromium_src-f34b7c5bab399a1cb348e29306b0961fb572f48e.zip chromium_src-f34b7c5bab399a1cb348e29306b0961fb572f48e.tar.gz chromium_src-f34b7c5bab399a1cb348e29306b0961fb572f48e.tar.bz2 |
Bookmark manager: Remove find as you type
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/894002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41461 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/resources/bookmark_manager/main.html | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/chrome/browser/resources/bookmark_manager/main.html b/chrome/browser/resources/bookmark_manager/main.html index 46d3251..7f275c0 100644 --- a/chrome/browser/resources/bookmark_manager/main.html +++ b/chrome/browser/resources/bookmark_manager/main.html @@ -259,20 +259,6 @@ list.addEventListener('urlClicked', function(e) { }); /** - * Timer id used for delaying find-as-you-type - */ -var inputDelayTimer; - -// Capture input changes to the search term input element and delay searching -// for 250ms to reduce flicker. -$('term').oninput = function(e) { - clearTimeout(inputDelayTimer); - inputDelayTimer = setTimeout(function() { - setSearch($('term').value); - }, 250); -}; - -/** * Navigates to the search results for the search text. * @para {string} searchText The text to search for. */ |