summaryrefslogtreecommitdiffstats
path: root/extensions/GuidedBugEntry/web/js/products.js
diff options
context:
space:
mode:
authorByron Jones <bjones@mozilla.com>2012-10-16 09:39:40 +0200
committerByron Jones <bjones@mozilla.com>2012-10-16 09:39:40 +0200
commit7d0b9d75d0c57661729ff931ee283675016b53f2 (patch)
treee13f1de521657d5d75e5d5e669288b782f1d90bc /extensions/GuidedBugEntry/web/js/products.js
parent6ab27a576d4a3d1a00ecb62afc9ce67fb0f68319 (diff)
downloadbugzilla-7d0b9d75d0c57661729ff931ee283675016b53f2.tar.gz
bugzilla-7d0b9d75d0c57661729ff931ee283675016b53f2.tar.xz
Bug 800691: guided bug entry - thunderbird - default to Untriaged and remove General components
Diffstat (limited to 'extensions/GuidedBugEntry/web/js/products.js')
-rw-r--r--extensions/GuidedBugEntry/web/js/products.js16
1 files changed, 15 insertions, 1 deletions
diff --git a/extensions/GuidedBugEntry/web/js/products.js b/extensions/GuidedBugEntry/web/js/products.js
index 9f9b62a14..026e94f0d 100644
--- a/extensions/GuidedBugEntry/web/js/products.js
+++ b/extensions/GuidedBugEntry/web/js/products.js
@@ -94,7 +94,21 @@ var products = {
"Thunderbird": {
related: [ "Core", "Toolkit", "MailNews Core" ],
- detectPlatform: true
+ detectPlatform: true,
+ defaultComponent: "Untriaged",
+ componentFilter : function(components) {
+ var index = -1;
+ for (var i = 0, l = components.length; i < l; i++) {
+ if (components[i].name == 'General') {
+ index = i;
+ break;
+ }
+ }
+ if (index != -1) {
+ components.splice(index, 1);
+ }
+ return components;
+ }
},
"Penelope": {