summaryrefslogtreecommitdiffstats
path: root/usr/local/www/status_graph.php
diff options
context:
space:
mode:
authorPhil Davis <phil.davis@world.inf.org>2012-04-17 14:39:49 +0545
committerPhil Davis <phil.davis@world.inf.org>2012-04-17 14:39:49 +0545
commit7f8f5d01faba367a2a2370c15c37c42126c5c3a5 (patch)
treeee06586607056f157d4853586105cad3c839b4fe /usr/local/www/status_graph.php
parent2e03f3e2973f91567af3a09d4d44018a8161cf3c (diff)
downloadpfsense-7f8f5d01faba367a2a2370c15c37c42126c5c3a5.zip
pfsense-7f8f5d01faba367a2a2370c15c37c42126c5c3a5.tar.gz
Fix typos where css('dislay') is missing a 'p' - now the top ten bandwidth users by host IP is visible on the Status:Traffic Graph
Diffstat (limited to 'usr/local/www/status_graph.php')
-rwxr-xr-xusr/local/www/status_graph.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/status_graph.php b/usr/local/www/status_graph.php
index 56d873a..bbe3a66 100755
--- a/usr/local/www/status_graph.php
+++ b/usr/local/www/status_graph.php
@@ -143,7 +143,7 @@ function updateBandwidthHosts(data){
//make the row appear if hidden
var rowid = "#host" + y;
- if (jQuery(rowid).css('dislay') == "none"){
+ if (jQuery(rowid).css('display') == "none"){
//hide rows that contain no data
jQuery(rowid).show(1000);
}
@@ -152,7 +152,7 @@ function updateBandwidthHosts(data){
else
{
var rowid = "#host" + y;
- if (jQuery(rowid).css('dislay') != "none"){
+ if (jQuery(rowid).css('display') != "none"){
//hide rows that contain no data
jQuery(rowid).fadeOut(2000);
}
OpenPOWER on IntegriCloud