* Fix bug 30985.

This commit is contained in:
zhaoke
2022-12-21 00:30:26 +00:00
parent 99f06984fe
commit 37d5fb0673
+4
View File
@@ -126,6 +126,10 @@ $(function()
$('.result-item').click(function()
{
var $this = $(this);
if($this.data('status') == 'running')
{
return;
}
$this.toggleClass('show-detail');
var show = $this.hasClass('show-detail');
$this.next('.result-detail').toggleClass('hide', !show);