[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_1-11158-ga7b9f38

Michal Čihař nijel at users.sourceforge.net
Thu Jul 21 13:46:21 CEST 2011


The branch, master has been updated
       via  a7b9f38c61d4c390b692719a6ba5c1594aa6d83e (commit)
      from  9fb8bf6ce6f4380a96c7aaaad4711797d4e791e2 (commit)


- Log -----------------------------------------------------------------
commit a7b9f38c61d4c390b692719a6ba5c1594aa6d83e
Author: Tyron Madlener <tyronx at gmail.com>
Date:   Tue Jul 19 12:59:13 2011 +0300

    Fixes wrong z-index of timepicker

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

Summary of changes:
 js/functions.js |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/js/functions.js b/js/functions.js
index 2a147d8..7f0c90f 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -157,6 +157,11 @@ function PMA_addDatepicker($this_element) {
             // Remember that we came from the datepicker; this is used
             // in tbl_change.js by verificationsAfterFieldChange()
             $this_element.data('comes_from', 'datepicker');
+
+            // Fix wrong timepicker z-index, doesn't work without timeout
+            setTimeout(function() {
+                $('#ui-timepicker-div').css('z-index',$('#ui-datepicker-div').css('z-index')) 
+            },0);
         },
         constrainInput: false
      });


hooks/post-receive
-- 
phpMyAdmin




More information about the Git mailing list