From 5ae95ca8b945cec145387a2ef764ec46213e1818 Mon Sep 17 00:00:00 2001 From: "myk%mozilla.org" <> Date: Tue, 14 Dec 2004 10:29:56 +0000 Subject: Fix for bug 241814: properly trim component fields according to product selection in the request queue, flag type editing, and anywhere else that uses the same code; r=vladd, a=justdave --- template/en/default/admin/flag-type/edit.html.tmpl | 9 +++------ template/en/default/request/queue.html.tmpl | 8 +++----- 2 files changed, 6 insertions(+), 11 deletions(-) (limited to 'template/en') diff --git a/template/en/default/admin/flag-type/edit.html.tmpl b/template/en/default/admin/flag-type/edit.html.tmpl index 253a310ac..c735ac33d 100644 --- a/template/en/default/admin/flag-type/edit.html.tmpl +++ b/template/en/default/admin/flag-type/edit.html.tmpl @@ -21,7 +21,7 @@ [% PROCESS global/variables.none.tmpl %] -[%# The javascript and header_html blocks get used in header.html.tmpl. %] +[%# The javascript block gets used in header.html.tmpl. %] [% javascript = BLOCK %] var usetms = 0; // do we have target milestone? var first_load = 1; // is this the first time we load the page? @@ -33,10 +33,6 @@ [% END %] [% END %] -[% header_html = BLOCK %] - -[% END %] - [% IF type.target_type == "bug" %] [% title = BLOCK %]Create Flag Type for [% terms.Bugs %][% END %] [% typeLabelLowerPlural = BLOCK %][% terms.bugs %][% END %] @@ -59,7 +55,8 @@ table#form th { text-align: right; vertical-align: baseline; white-space: nowrap; } table#form td { text-align: left; vertical-align: baseline; } " - onload="selectProduct(forms[0], 'product', 'component', '__Any__');" + onload="selectProduct(document.forms[0], 'product', 'component', '__Any__');" + javascript_urls=["productmenu.js"] %]
diff --git a/template/en/default/request/queue.html.tmpl b/template/en/default/request/queue.html.tmpl index 5a626b183..fbfa94d25 100644 --- a/template/en/default/request/queue.html.tmpl +++ b/template/en/default/request/queue.html.tmpl @@ -24,7 +24,7 @@ [% USE Bugzilla %] [% cgi = Bugzilla.cgi %] -[%# The javascript and header_html blocks get used in header.html.tmpl. %] +[%# The javascript block gets used in header.html.tmpl. %] [% javascript = BLOCK %] var usetms = 0; // do we have target milestone? var first_load = 1; // is this the first time we load the page? @@ -36,10 +36,6 @@ [% END %] [% END %] -[% header_html = BLOCK %] - -[% END %] - [% filter_form = BLOCK %] @@ -133,6 +129,8 @@ table.requests th { text-align: left; } table#filter th { text-align: right; } " + onload="selectProduct(document.forms[0], 'product', 'component', 'Any');" + javascript_urls=["productmenu.js"] %] [% IF debug %] -- cgit v1.2.3-24-g4f1b