summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/status_filter_reload.php
diff options
context:
space:
mode:
authorStephen Beaver <sbeaver@netgate.com>2016-01-22 08:42:06 -0500
committerStephen Beaver <sbeaver@netgate.com>2016-01-22 08:42:06 -0500
commit4370022d11e893db47c433ad179ac65be30e821c (patch)
treeff147af947f1f405fc545b7716ca585db745c089 /src/usr/local/www/status_filter_reload.php
parente693376db89ee9dbbe110a62dabb18b472e7bfcc (diff)
downloadpfsense-4370022d11e893db47c433ad179ac65be30e821c.zip
pfsense-4370022d11e893db47c433ad179ac65be30e821c.tar.gz
Replace "jQuery" with "$" for consistency
Diffstat (limited to 'src/usr/local/www/status_filter_reload.php')
-rw-r--r--src/usr/local/www/status_filter_reload.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/usr/local/www/status_filter_reload.php b/src/usr/local/www/status_filter_reload.php
index 01255a1..443c358 100644
--- a/src/usr/local/www/status_filter_reload.php
+++ b/src/usr/local/www/status_filter_reload.php
@@ -133,18 +133,18 @@ function update_data(obj) {
result_text = result_text.replace("\n", "");
result_text = result_text.replace("\r", "");
if (result_text) {
- jQuery('#status').html(result_text + '...');
+ $('#status').html(result_text + '...');
} else {
- jQuery('#status').html('<?=gettext("Obtaining filter status...");?>');
+ $('#status').html('<?=gettext("Obtaining filter status...");?>');
}
if (result_text == "Initializing") {
- jQuery('#status').html('<?=gettext("Initializing...");?>');
+ $('#status').html('<?=gettext("Initializing...");?>');
} else if (result_text == "Done") {
- jQuery('#status').effect('highlight');
- jQuery('#status').html('<?=gettext("Done. The filter rules have been reloaded.");?>');
- jQuery('#reloadinfo').css("visibility", "hidden");
- jQuery('#doneurl').css("visibility", "visible");
- jQuery('#doneurl').html("<p><a href='status_queues.php'><?=gettext("Queue Status");?><\/a><\/p>");
+ $('#status').effect('highlight');
+ $('#status').html('<?=gettext("Done. The filter rules have been reloaded.");?>');
+ $('#reloadinfo').css("visibility", "hidden");
+ $('#doneurl').css("visibility", "visible");
+ $('#doneurl').html("<p><a href='status_queues.php'><?=gettext("Queue Status");?><\/a><\/p>");
}
window.setTimeout('update_status_thread()', 2500);
}
OpenPOWER on IntegriCloud