diff options
author | Byron Jones <glob@mozilla.com> | 2015-06-05 06:40:01 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-06-05 06:40:01 +0200 |
commit | 907fbcfd19dfa436567bf4a75f566b8f81f43298 (patch) | |
tree | bdbe5df647bdc5bbdbfe0a228bdb9d56d864ba40 /template/en/default | |
parent | a34e675b4ac3ebce28c2a0450fe75f8df38c540c (diff) | |
download | bugzilla-907fbcfd19dfa436567bf4a75f566b8f81f43298.tar.gz bugzilla-907fbcfd19dfa436567bf4a75f566b8f81f43298.tar.xz |
Bug 1146775: implement comment collapse all and by tag
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/global/header.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/global/header.html.tmpl b/template/en/default/global/header.html.tmpl index 086191a39..aafbbca70 100644 --- a/template/en/default/global/header.html.tmpl +++ b/template/en/default/global/header.html.tmpl @@ -130,7 +130,7 @@ [% SET yui = yui_resolve_deps(yui, yui_deps) %] [% END %] - [% SET css_sets = css_files(style_urls, yui, yui_css) %] + [% SET css_sets = css_files(style_urls.unique, yui, yui_css) %] [% IF constants.CONCATENATE_ASSETS %] [% PROCESS format_css_link asset_url = css_sets.unified_standard_skin %] [% ELSE %] @@ -166,7 +166,7 @@ [% END %] [%# jQuery Plugins %] - [% FOREACH jq_name = jquery %] + [% FOREACH jq_name = jquery.unique %] [% starting_js_urls.push("js/jquery/plugins/$jq_name/${jq_name}-min.js") %] [% END %] [% starting_js_urls.push('js/global.js') %] |