summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Beaver <sbeaver@netgate.com>2015-11-17 07:52:09 -0500
committerStephen Beaver <sbeaver@netgate.com>2015-11-17 07:52:09 -0500
commit3c720580a5360f48e2303138c8de018ef2833453 (patch)
tree9fdb5f957db5b821949d754e8854912c3c6fdcc3
parent774dba04d40ee07225d6ed1e8650a254f5b33fde (diff)
downloadpfsense-3c720580a5360f48e2303138c8de018ef2833453.zip
pfsense-3c720580a5360f48e2303138c8de018ef2833453.tar.gz
Use manual stirping on table load
-rw-r--r--src/usr/local/www/widgets/widgets/interface_statistics.widget.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/usr/local/www/widgets/widgets/interface_statistics.widget.php b/src/usr/local/www/widgets/widgets/interface_statistics.widget.php
index ee71aa7..d085a26 100644
--- a/src/usr/local/www/widgets/widgets/interface_statistics.widget.php
+++ b/src/usr/local/www/widgets/widgets/interface_statistics.widget.php
@@ -117,7 +117,7 @@ if($_REQUEST && $_REQUEST['ajax']) {
}
?>
-<table id="iftbl" class="table table-striped table-hover">
+<table id="iftbl" class="table table-hover">
<tr><td><?=gettext("Retrieving interface data")?></td></tr>
</table>
@@ -136,6 +136,7 @@ if($_REQUEST && $_REQUEST['ajax']) {
// Deal with the results of the above ajax call
ajaxRequest.done(function (response, textStatus, jqXHR) {
$('#iftbl').html(response);
+ stripe_table();
// and do it again
setTimeout(get_if_stats, 5000);
});
OpenPOWER on IntegriCloud