From 4beca2fe920abbe8a0f30a23d23b84d3d6d0c0c8 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Mon, 3 Jan 2011 17:37:33 -0500 Subject: [PATCH] Use the clip effect instead of the drop effect --- libraries/common.lib.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/libraries/common.lib.php b/libraries/common.lib.php index c0780852cf..0e8a70c568 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -2546,9 +2546,10 @@ function PMA_generate_slider_effect($id, $message) $('') .insertBefore('#') .click(function() { - // the callback should be the 4th parameter but - // it only works as the second parameter - $('#').toggle('drop', function() { + // The callback should be the 4th parameter but + // it only works as the second parameter; + // For the possible effects see http://jqueryui.com/demos/show + $('#').toggle('clip', function() { PMA_set_status_label_(); }); }); -- 2.11.4.GIT