diff --git a/modules/openstack_project/files/zuul/status.js b/modules/openstack_project/files/zuul/status.js index 6eaf517985..2602dcc2fb 100644 --- a/modules/openstack_project/files/zuul/status.js +++ b/modules/openstack_project/files/zuul/status.js @@ -230,7 +230,7 @@ function format_change(change, change_queue) { html += ''; html += '
' + - '
'; @@ -310,8 +310,15 @@ function format_change(change, change_queue) { return html; } -function toggle_display_jobs(_header) { +function toggle_display_jobs(e, _header) { + e = e || window.event; // standards compliant || IE var header = $(_header); + var target = $(e.target || e.srcElement); + var link = header.find("a"); + if (target.is(link)) { + return true; + } + content = header.next("div"); content.slideToggle(100, function () { changeid = header.parent().attr('id');