Revision cde85ce5
Added by sbeaver over 10 years ago
usr/local/www/diag_limiter_info.php | ||
---|---|---|
77 | 77 |
}); |
78 | 78 |
} |
79 | 79 |
function activitycallback(transport) { |
80 |
jQuery('#limiteractivitytitle').html('Limiter Information'); |
|
80 | 81 |
jQuery('#limiteractivitydiv').html('<font face="Courier" size="2"><pre style="text-align:left;">' + transport.responseText + '<\/pre><\/font>'); |
81 | 82 |
setTimeout('getlimiteractivity()', 2000); |
82 | 83 |
} |
... | ... | |
94 | 95 |
if ($input_errors) |
95 | 96 |
print_input_errors($input_errors); |
96 | 97 |
?> |
97 |
<div class="table-responsive"> |
|
98 |
<table class="table table-striped table-hover" align="center" summary="limiter information"> |
|
99 |
<thead></thead> |
|
100 |
<tbody> |
|
101 |
<tr align="center"> |
|
102 |
<td> |
|
103 |
<div id="limiteractivitydiv"> |
|
104 |
<?=gettext("Gathering Limiter information, please wait...")?> |
|
105 |
</div> |
|
106 |
</td> |
|
107 |
</tr> |
|
108 |
</tbody> |
|
109 |
</table> |
|
110 |
</div> |
|
98 |
|
|
99 |
|
|
100 |
<div class="panel panel-default"> |
|
101 |
<div id="limiteractivitytitle" class="panel-heading"><?=gettext("Gathering Limiter information, please wait...")?></div> |
|
102 |
<div id="limiteractivitydiv" class="panel-body"></div> |
|
111 | 103 |
</div> |
112 | 104 |
|
113 | 105 |
<?php include("foot.inc"); ?> |
Also available in: Unified diff
Table replaced with panel
Thank you for your suggestion. I will revisit other pages that use
tables and make the same change.