diff options
author | mkanat%bugzilla.org <> | 2008-09-18 06:48:56 +0200 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2008-09-18 06:48:56 +0200 |
commit | 427ca00367ae35af9c87d8fe3106926d65c26ec7 (patch) | |
tree | b22d7547ce68c255ef987fa477f10d683dd53c0d /template/en/default/bug/create | |
parent | 249bd21ac6cc1c9ef0c9f0f8e9b6b90066dd0a02 (diff) | |
download | bugzilla-427ca00367ae35af9c87d8fe3106926d65c26ec7.tar.gz bugzilla-427ca00367ae35af9c87d8fe3106926d65c26ec7.tar.xz |
Bug 452734: Remove the keyword chooser, because it's a usability regression
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=mkanat
Diffstat (limited to 'template/en/default/bug/create')
-rw-r--r-- | template/en/default/bug/create/create.html.tmpl | 11 | ||||
-rw-r--r-- | template/en/default/bug/create/created.html.tmpl | 2 |
2 files changed, 4 insertions, 9 deletions
diff --git a/template/en/default/bug/create/create.html.tmpl b/template/en/default/bug/create/create.html.tmpl index 9b522f2a7..d9eab0e04 100644 --- a/template/en/default/bug/create/create.html.tmpl +++ b/template/en/default/bug/create/create.html.tmpl @@ -32,7 +32,7 @@ title = title style_urls = [ 'skins/standard/create_attachment.css', 'skins/standard/yui/calendar.css' ] - javascript_urls = [ "js/attachment.js", "js/util.js", "js/keyword-chooser.js", + javascript_urls = [ "js/attachment.js", "js/util.js", "js/yui/yahoo-dom-event.js", "js/yui/calendar.js", "js/field.js" ] %] @@ -531,7 +531,8 @@ function handleWantsAttachment(wants_attachment) { <tr> <th><a href="describekeywords.cgi">Keywords</a>:</th> <td colspan="3"> - <input id="keywords" name="keywords" size="60" value="[% keywords FILTER html %]" onfocus="this.chooser.open();"> (optional) + <input id="keywords" name="keywords" size="60" + value="[% keywords FILTER html %]"> (optional) </td> </tr> [% END %] @@ -600,12 +601,6 @@ function handleWantsAttachment(wants_attachment) { <input type="hidden" name="form_name" value="enter_bug"> </form> -[% IF use_keywords %] - [% PROCESS "bug/keyword-chooser.html.tmpl" - sel_keywords = keywords.split(', ') - %] -[% END %] - [%# Links or content with more information about the bug being created. %] [% Hook.process("end") %] diff --git a/template/en/default/bug/create/created.html.tmpl b/template/en/default/bug/create/created.html.tmpl index 1cf2a14f7..6226fdc64 100644 --- a/template/en/default/bug/create/created.html.tmpl +++ b/template/en/default/bug/create/created.html.tmpl @@ -36,7 +36,7 @@ [% PROCESS global/header.html.tmpl title = "$terms.Bug $id Submitted" - javascript_urls = [ "js/util.js", "js/keyword-chooser.js", "js/field.js", + javascript_urls = [ "js/util.js", "js/field.js", "js/yui/yahoo-dom-event.js", "js/yui/calendar.js" ] style_urls = [ "skins/standard/yui/calendar.css", "skins/standard/show_bug.css" ] |