From d90a58d06150f27f008d63c9fee8b92e56afaeea Mon Sep 17 00:00:00 2001 From: Ammar Yasir Date: Sun, 10 Jul 2011 08:37:15 +0530 Subject: [PATCH] Some indentation errors fixed from previous commit --- js/tbl_zoom_plot.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/js/tbl_zoom_plot.js b/js/tbl_zoom_plot.js index 7282fe56b6..87aceedc1a 100644 --- a/js/tbl_zoom_plot.js +++ b/js/tbl_zoom_plot.js @@ -11,10 +11,10 @@ ** Display Help/Info **/ function displayHelp() { - var msgbox = PMA_ajaxShowMessage(PMA_messages['strDisplayHelp'],10000); - msgbox.click(function() { - $(this).remove(); - }); + var msgbox = PMA_ajaxShowMessage(PMA_messages['strDisplayHelp'],10000); + msgbox.click(function() { + $(this).remove(); + }); } /** @@ -22,7 +22,7 @@ function displayHelp() { ** @param array **/ Array.max = function (array) { - return Math.max.apply( Math, array ); + return Math.max.apply( Math, array ); } /** @@ -30,7 +30,7 @@ Array.max = function (array) { ** @param array **/ Array.min = function (array) { - return Math.min.apply( Math, array ); + return Math.min.apply( Math, array ); } /**