summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorarv@chromium.org <arv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-12 19:36:22 +0000
committerarv@chromium.org <arv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-12 19:36:22 +0000
commitf34b7c5bab399a1cb348e29306b0961fb572f48e (patch)
tree037894f6ba7fdafc15abf338b12df14619b371fb
parentb0f93406e485bd605c323e9d386fae0e6b86d50c (diff)
downloadchromium_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.html14
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.
*/