diff options
author | Dan Callahan <dan.callahan@gmail.com> | 2016-08-29 18:26:52 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2016-09-20 15:35:07 +0200 |
commit | a2f813d8d4a129455feae4cb9b1fe97c23bac588 (patch) | |
tree | 3465758455b6122e3513f864d9c4e26e64416955 /extensions/BMO/web/js | |
parent | 80b9c88c2670405b13406e3c2f54316fdf229dcb (diff) | |
download | bugzilla-a2f813d8d4a129455feae4cb9b1fe97c23bac588.tar.gz bugzilla-a2f813d8d4a129455feae4cb9b1fe97c23bac588.tar.xz |
Bug 1267347 - Editing the Dev-Events Form to be current
Diffstat (limited to 'extensions/BMO/web/js')
-rw-r--r-- | extensions/BMO/web/js/dev_engagement.js | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/extensions/BMO/web/js/dev_engagement.js b/extensions/BMO/web/js/dev_engagement.js index ae6551617..f025b4ac7 100644 --- a/extensions/BMO/web/js/dev_engagement.js +++ b/extensions/BMO/web/js/dev_engagement.js @@ -111,12 +111,12 @@ var DE = { } var relevant_products = [ - 'product_fxos', 'product_fx', - 'product_webmaker', - 'product_persona', - 'product_marketplace', - 'product_tb', + 'product_encryption', + 'product_web_asm', + 'product_rust', + 'product_servo', + 'product_webvr', 'product_fow', 'product_devtools', 'product_other', @@ -189,18 +189,18 @@ var DE = { wb += '[requesting:' + request_items.join(',') + '] '; var product_items = []; - if (document.getElementById('product_fxos').checked) - product_items.push('firefox-os'); if (document.getElementById('product_fx').checked) product_items.push('firefox-web-browser'); - if (document.getElementById('product_webmaker').checked) - product_items.push('webmaker'); - if (document.getElementById('product_persona').checked) - product_items.push('persona'); - if (document.getElementById('product_marketplace').checked) - product_items.push('marketplace'); - if (document.getElementById('product_tb').checked) - product_items.push('thunderbird'); + if (document.getElementById('product_encryption').checked) + product_items.push('encryption'); + if (document.getElementById('product_web_asm').checked) + product_items.push('web-assembly-or-platform'); + if (document.getElementById('product_rust').checked) + product_items.push('servo'); + if (document.getElementById('product_servo').checked) + product_items.push('rust'); + if (document.getElementById('product_webvr').checked) + product_items.push('webvr'); if (document.getElementById('product_fow').checked) product_items.push('open-web'); if (document.getElementById('product_devtools').checked) |