summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--extensions/Needinfo/template/en/default/bug/needinfo.html.tmpl10
1 files changed, 10 insertions, 0 deletions
diff --git a/extensions/Needinfo/template/en/default/bug/needinfo.html.tmpl b/extensions/Needinfo/template/en/default/bug/needinfo.html.tmpl
index 8810b5f21..516ec0087 100644
--- a/extensions/Needinfo/template/en/default/bug/needinfo.html.tmpl
+++ b/extensions/Needinfo/template/en/default/bug/needinfo.html.tmpl
@@ -83,4 +83,14 @@
</span>
[% END %]
</div>
+ <script>
+ // HACK: Shift the needinfo container to a different location
+ // below commit button but before status drop down. This allows
+ // for better tab navigation
+ YAHOO.util.Event.onDOMReady(function() {
+ var needinfo = YAHOO.util.Dom.get('needinfo_container');
+ var status = YAHOO.util.Dom.get('bug_status_bottom');
+ status.parentNode.insertBefore(needinfo, status);
+ });
+ </script>
[% END %]