Move the panel header to the list panel

This commit is contained in:
Andrew Carr 2022-05-20 15:44:08 +00:00
parent 7a725e648d
commit 79a3d2dac9
2 changed files with 8 additions and 4 deletions

View File

@ -136,10 +136,6 @@
<div class="panel panel-primary sticky">
<!-- Default panel contents -->
<div class="panel-heading">
<b id="panel-heading">Queue</b>
<b id="panel-heading-info" class="text pull-right"></b>
</div>
<div class="panel-body">
<h1>
<span
@ -170,6 +166,10 @@
<!-- /.panel -->
<!-- /.panel-body -->
<div class="panel panel-primary">
<div class="panel-heading">
<b id="panel-heading">Queue</b>
<b id="panel-heading-info" class="text pull-right"></b>
</div>
<ol id="breadcrump" class="breadcrumb"></ol>
<div class="col-md-12" id="filter"></div>

View File

@ -113,6 +113,10 @@ var app = $.sammy(function () {
);
full_path += '/';
});
// Remove the Queue Length Total
$('#panel-heading-info').empty();
$('#browse').addClass('active');
});