summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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.
*/