[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_8-10714-g473181a

The branch, master has been updated via 473181a8a3e773711bc8adcbe05c1918b4120457 (commit) from 91a64c1ee2b4720c2ae481e1de49bb9b1111ca91 (commit) - Log ----------------------------------------------------------------- commit 473181a8a3e773711bc8adcbe05c1918b4120457 Author: Marc Delisle <marc@infomarc.info> Date: Sun Oct 31 18:06:44 2010 -0400 prefix for variable holding jQuery object; remove extra wrapping for the object ----------------------------------------------------------------------- Summary of changes: js/tbl_change.js | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/js/tbl_change.js b/js/tbl_change.js index b38eeac..14fd11a 100644 --- a/js/tbl_change.js +++ b/js/tbl_change.js @@ -302,9 +302,9 @@ $(document).ready(function() { .after(data.sql_query); //Remove the empty notice div generated due to a NULL query passed to PMA_showMessage() - var notice_class = $("#topmenucontainer").next("div").find('.notice'); - if($(notice_class).text() == '') { - $(notice_class).remove(); + var $notice_class = $("#topmenucontainer").next("div").find('.notice'); + if ($notice_class.text() == '') { + $notice_class.remove(); } var submit_type = $form.find("select[name='submit_type']").val(); hooks/post-receive -- phpMyAdmin
participants (1)
-
Marc Delisle