From: timothy@hatcher.name Date: Thu, 19 Jan 2017 19:16:22 +0000 (+0000) Subject: Bugzilla email autocomplete does not work on third email field of advanced search... X-Git-Url: http://git.webkit.org/?p=WebKit-https.git;a=commitdiff_plain;h=e7fffef231f7a63a8a5bb02dad5badfdaf27d65d Bugzilla email autocomplete does not work on third email field of advanced search page https://bugs.webkit.org/show_bug.cgi?id=167204 Reviewed by Alexey Proskuryakov. * committers-autocomplete.js: Added email3 to SINGLE_EMAIL_INPUTS list. git-svn-id: https://svn.webkit.org/repository/webkit/trunk@210931 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/Websites/bugs.webkit.org/ChangeLog b/Websites/bugs.webkit.org/ChangeLog index fc63507..57b6140 100644 --- a/Websites/bugs.webkit.org/ChangeLog +++ b/Websites/bugs.webkit.org/ChangeLog @@ -1,3 +1,12 @@ +2017-01-19 Timothy Hatcher + + Bugzilla email autocomplete does not work on third email field of advanced search page + https://bugs.webkit.org/show_bug.cgi?id=167204 + + Reviewed by Alexey Proskuryakov. + + * committers-autocomplete.js: Added email3 to SINGLE_EMAIL_INPUTS list. + 2016-10-09 Simon Fraser Convert contributors.json to a flat list diff --git a/Websites/bugs.webkit.org/committers-autocomplete.js b/Websites/bugs.webkit.org/committers-autocomplete.js index 987cc3e..5589cde 100644 --- a/Websites/bugs.webkit.org/committers-autocomplete.js +++ b/Websites/bugs.webkit.org/committers-autocomplete.js @@ -85,7 +85,7 @@ WebKitCommitters = (function() { })(); (function() { - var SINGLE_EMAIL_INPUTS = ['email1', 'email2', 'requester', 'requestee', 'assigned_to']; + var SINGLE_EMAIL_INPUTS = ['email1', 'email2', 'email3', 'requester', 'requestee', 'assigned_to']; var EMAIL_INPUTS = SINGLE_EMAIL_INPUTS.concat(['cc', 'newcc', 'new_watchedusers']); var m_menus = {};