diff options
author | Byron Jones <glob@mozilla.com> | 2015-09-09 07:06:50 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-09-09 07:06:50 +0200 |
commit | 32cf4354854dcc2c98faba437fc6794d731fda2e (patch) | |
tree | c710896719846311c1e9cb8c778fc81b93c83e23 /js | |
parent | e358696f04bff75912cf777c569262cfc1559860 (diff) | |
download | bugzilla-32cf4354854dcc2c98faba437fc6794d731fda2e.tar.gz bugzilla-32cf4354854dcc2c98faba437fc6794d731fda2e.tar.xz |
Bug 1202975 - warning about api key requirement is no longer shown when enabling 2fa
Diffstat (limited to 'js')
-rw-r--r-- | js/account.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/account.js b/js/account.js index 76b385437..0525045b1 100644 --- a/js/account.js +++ b/js/account.js @@ -56,7 +56,6 @@ $(function() { .click(function(event) { event.preventDefault(); $('#mfa-enable-container').show(); - $('#mfa-api-blurb').show(); $(this).hide(); }); @@ -71,6 +70,7 @@ $(function() { } else { $('#mfa-confirm').show(); + $('.mfa-api-blurb').show(); if (mfa === 'TOTP') { $('#mfa-enable-totp').show(); $('#mfa-totp-throbber').show(); |