diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2013-04-03 04:26:28 +0200 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2013-04-03 04:26:28 +0200 |
commit | c62be4691146572b582dab517d44e4e40bc8abfc (patch) | |
tree | 3750e0fe59b5eeb5365e0a24c4a20804d4882bc4 /extensions/GuidedBugEntry/web | |
parent | 664a4f4131d5cc556f6aae6cd426263e840a3836 (diff) | |
download | bugzilla-c62be4691146572b582dab517d44e4e40bc8abfc.tar.gz bugzilla-c62be4691146572b582dab517d44e4e40bc8abfc.tar.xz |
Bug 724048 - Instant search doesn't work in Fennec Native product
- Instant search for Firefox for Android was broken due to still looking
for Fennec product which no longer exists. instant-search.js was getting
an error that the product did not exist.
Diffstat (limited to 'extensions/GuidedBugEntry/web')
-rw-r--r-- | extensions/GuidedBugEntry/web/js/products.js | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/extensions/GuidedBugEntry/web/js/products.js b/extensions/GuidedBugEntry/web/js/products.js index 8339e3505..dfc830d0f 100644 --- a/extensions/GuidedBugEntry/web/js/products.js +++ b/extensions/GuidedBugEntry/web/js/products.js @@ -47,18 +47,8 @@ var products = { ' <b>Firefox Help</b></a> instead of creating a bug.' }, - "Fennec": { - related: [ "Firefox for Android", "Core", "Toolkit" ], - detectPlatform: true, - support: - 'If you are new to Firefox or Bugzilla, please consider checking ' + - '<a href="http://support.mozilla.com/">' + - '<img src="extensions/GuidedBugEntry/web/images/sumo.png" width="16" height="16" align="absmiddle">' + - ' <b>Firefox Help</b></a> instead of creating a bug.' - }, - "Firefox for Android": { - related: [ "Fennec", "Core", "Toolkit" ], + related: [ "Core", "Toolkit" ], detectPlatform: true, support: 'If you are new to Firefox or Bugzilla, please consider checking ' + |