[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA3-815-g4c7aa9c

Marc Delisle lem9 at users.sourceforge.net
Sat Feb 19 17:20:38 CET 2011


The branch, master has been updated
       via  4c7aa9cfee0f6135501242fb5708cfed40cc6be0 (commit)
      from  624ec9c5f9ddeb2394b206ba38f500a7d5181f0a (commit)


- Log -----------------------------------------------------------------
commit 4c7aa9cfee0f6135501242fb5708cfed40cc6be0
Author: Marc Delisle <marc at infomarc.info>
Date:   Sat Feb 19 11:20:11 2011 -0500

    No need to show the "Hide query box" initially

-----------------------------------------------------------------------

Summary of changes:
 js/sql.js |    8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/js/sql.js b/js/sql.js
index be6a7ab..219b28c 100644
--- a/js/sql.js
+++ b/js/sql.js
@@ -192,12 +192,15 @@ $(document).ready(function() {
     if (! $('#sqlqueryform').find('a').is('#togglequerybox')) {
         $('<a id="togglequerybox"></a>')
         .html(PMA_messages['strHideQueryBox'])
-        .appendTo("#sqlqueryform");
+        .appendTo("#sqlqueryform")
+        // initially hidden because at this point, nothing else
+        // appears under the link
+        .hide();
 
         // Attach the toggling of the query box visibility to a click
         $("#togglequerybox").bind('click', function() {
             var $link = $(this)
-            $link.siblings().slideToggle("medium");
+            $link.siblings().slideToggle("fast");
             if ($link.text() == PMA_messages['strHideQueryBox']) {
                 $link.text(PMA_messages['strShowQueryBox']);
             } else {
@@ -263,6 +266,7 @@ $(document).ready(function() {
                 $('#sqlqueryresults').show();
                 $("#sqlqueryresults").html(data);
                 $("#sqlqueryresults").trigger('appendAnchor');
+                $('#togglequerybox').show();
                 if($("#togglequerybox").siblings(":visible").length > 0) {
                     $("#togglequerybox").trigger('click');
                 }


hooks/post-receive
-- 
phpMyAdmin




More information about the Git mailing list