[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2RC1-1570-g7393ad7

Michal Čihař nijel at users.sourceforge.net
Mon Apr 12 11:31:50 CEST 2010


The branch, master has been updated
       via  7393ad7bea2bfdb0db9aae31bc310248cae0d485 (commit)
      from  8e6843061099e68c667c4a53a20b568ef3722690 (commit)


- Log -----------------------------------------------------------------
commit 7393ad7bea2bfdb0db9aae31bc310248cae0d485
Author: Michal Čihař <mcihar at novell.com>
Date:   Mon Apr 12 11:30:23 2010 +0200

    jQuery -> $

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

Summary of changes:
 js/functions.js          |    2 +-
 js/navigation.js         |   12 ++++++------
 js/update-location.js    |    2 +-
 libraries/footer.inc.php |    2 +-
 4 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/js/functions.js b/js/functions.js
index 447d1c6..a9346fe 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -1719,7 +1719,7 @@ $(document).ready(function(){
         $(".sql").html("<span class=\"syntax\">"+$oldText+"</span>");
     });
 
-    jQuery('.sqlbutton').click(function(evt){
+    $('.sqlbutton').click(function(evt){
         insertQuery(evt.target.id);
         return false;
     });
diff --git a/js/navigation.js b/js/navigation.js
index 2932105..391b77d 100644
--- a/js/navigation.js
+++ b/js/navigation.js
@@ -177,17 +177,17 @@ function fast_filter(value){
  * Clears fast filter.
  */
 function clear_fast_filter() {
-    var elm = jQuery('#NavFilter input');
+    var elm = $('#NavFilter input');
     elm.val('');
     fast_filter('');
     elm.focus();
 }
 
 /* Performed on load */
-jQuery(document).ready(function(){
+$(document).ready(function(){
     /* Display filter */
-    jQuery('#NavFilter').css('display', 'inline');
-    jQuery('#clear_fast_filter').click(clear_fast_filter);
-    jQuery('#fast_filter').focus(function (evt) {evt.target.select();});
-    jQuery('#fast_filter').keyup(function (evt) {fast_filter(evt.target.value);});
+    $('#NavFilter').css('display', 'inline');
+    $('#clear_fast_filter').click(clear_fast_filter);
+    $('#fast_filter').focus(function (evt) {evt.target.select();});
+    $('#fast_filter').keyup(function (evt) {fast_filter(evt.target.value);});
 });
diff --git a/js/update-location.js b/js/update-location.js
index 8ebdb62..b8b001d 100644
--- a/js/update-location.js
+++ b/js/update-location.js
@@ -42,7 +42,7 @@ function setURLHash(hash) {
  * Handler for changing url according to the hash part, which is updated
  * on each page to allow bookmarks.
  */
-jQuery(document).ready(function(){
+$(document).ready(function(){
     /* Don't do anything if we're not root Window */
     if (window.parent != window && window.parent.setURLHash) {
         return;
diff --git a/libraries/footer.inc.php b/libraries/footer.inc.php
index deacb53..d02aee0 100644
--- a/libraries/footer.inc.php
+++ b/libraries/footer.inc.php
@@ -100,7 +100,7 @@ if (! empty($_SESSION['debug'])) {
 <?php
 if (empty($GLOBALS['error_message'])) {
     ?>
-jQuery(document).ready(function(){
+$(document).ready(function(){
 // updates current settings
 if (window.parent.setAll) {
     window.parent.setAll('<?php


hooks/post-receive
-- 
phpMyAdmin




More information about the Git mailing list