From e165295807e77e7e9507fcde962681b4293a6e89 Mon Sep 17 00:00:00 2001 From: Benjamin Stover Date: Tue, 1 Sep 2009 23:46:05 -0400 Subject: [PATCH] Bug 500322: 'Find' button in download manager does nothing, r=mfinkle --- mobile/chrome/content/bindings/downloads.xml | 6 +----- mobile/chrome/content/downloads.js | 9 --------- 2 files changed, 1 insertion(+), 14 deletions(-) diff --git a/mobile/chrome/content/bindings/downloads.xml b/mobile/chrome/content/bindings/downloads.xml index b5e2b9fc3826..7b9d53b71317 100644 --- a/mobile/chrome/content/bindings/downloads.xml +++ b/mobile/chrome/content/bindings/downloads.xml @@ -128,8 +128,6 @@ - diff --git a/mobile/chrome/content/downloads.js b/mobile/chrome/content/downloads.js index a35fd56363e6..2b9d5338c1cb 100644 --- a/mobile/chrome/content/downloads.js +++ b/mobile/chrome/content/downloads.js @@ -416,15 +416,6 @@ var DownloadsView = { // TODO: add back the code for "dontAsk"? }, - showDownload: function dv_showDownload(aItem) { - let f = this._getLocalFile(aItem.getAttribute("file")); - try { - f.reveal(); - } catch (ex) { } - - // TODO: add back the extra code? - }, - removeDownload: function dv_removeDownload(aItem) { this._dlmgr.removeDownload(aItem.getAttribute("downloadID")); },