From 86cf36813dbf3ca89d6e8cd21df2625ddfb6d59f Mon Sep 17 00:00:00 2001 From: Vinicius Coque Date: Sat, 21 Jan 2012 18:08:09 -0200 Subject: making small fixes on jQuery code --- usr/local/www/load_balancer_virtual_server_edit.php | 2 +- usr/local/www/status_queues.php | 2 +- usr/local/www/widgets/javascript/cpu_graphs.js | 15 +++++++-------- 3 files changed, 9 insertions(+), 10 deletions(-) (limited to 'usr/local') diff --git a/usr/local/www/load_balancer_virtual_server_edit.php b/usr/local/www/load_balancer_virtual_server_edit.php index b9b4634..7a2d792 100755 --- a/usr/local/www/load_balancer_virtual_server_edit.php +++ b/usr/local/www/load_balancer_virtual_server_edit.php @@ -157,7 +157,7 @@ function updateRelay(m) { } } -document.observe("dom:loaded", function() { +jQuery(document).ready( function() { // Setup some observers jQuery('#redirect_mode').bind('click', function(){ updateRelay('redirect'); diff --git a/usr/local/www/status_queues.php b/usr/local/www/status_queues.php index 32dfd09..192cd6a 100755 --- a/usr/local/www/status_queues.php +++ b/usr/local/www/status_queues.php @@ -126,7 +126,7 @@ if(!is_array($config['shaper']['queue']) && count($config['shaper']['queue']) < function activitycallback(transport) { setTimeout('getqueueactivity()', 5100); } - document.observe('dom:loaded', function(){ + jQuery(document).ready(function(){ setTimeout('getqueueactivity()', 150); }); diff --git a/usr/local/www/widgets/javascript/cpu_graphs.js b/usr/local/www/widgets/javascript/cpu_graphs.js index 3d91b5f..c7b6e8b 100644 --- a/usr/local/www/widgets/javascript/cpu_graphs.js +++ b/usr/local/www/widgets/javascript/cpu_graphs.js @@ -36,7 +36,7 @@ var GL_DYNAMIC = 1; function GraphInitialize(element_id, width, height, bar_width) { // Find the page element which will contain the graph var owner; - if((owner = $(element_id)) == null) { + if((owner = jQuery('#' + element_id)) == null) { alert("GraphLink Error: Element ID '" + element_id + "' not found."); return false; } @@ -71,14 +71,13 @@ function GraphInitialize(element_id, width, height, bar_width) { } graph_html += ''; - owner.innerHTML = graph_html; - graph['element_id'] = $('GraphLinkData' + graph['id']); + owner.html(graph_html); + graph['element_id'] = jQuery('#GraphLinkData' + graph['id']); for(i = 0; i < bar_count; i++) { - graph['spans'][i] = $('GraphLinkBar' + graph['id'] + - '_' + i); - graph['spans'][i].style.width = bar_width + 'px'; - graph['spans'][i].style.marginTop = height + 'px'; + graph['spans'][i] = jQuery('#GraphLinkBar' + graph['id'] + '_' + i); + graph['spans'][i].css('width',bar_width + 'px'); + graph['spans'][i].css('margin-top',height + 'px'); } return graph; @@ -243,4 +242,4 @@ function GraphDraw(graph) { graph['spans'][i].style.marginTop = getMargin(i); // jQuery('#' + graph['spans'][count - 1]).fadeIn(500); -} \ No newline at end of file +} -- cgit v1.1