Unneeded wrapping of a jQuery object
This commit is contained in:
@@ -60,9 +60,9 @@ $(document).ready(function() {
|
|||||||
.after(data.sql_query);
|
.after(data.sql_query);
|
||||||
|
|
||||||
//Remove the empty notice div generated due to a NULL query passed to PMA_showMessage()
|
//Remove the empty notice div generated due to a NULL query passed to PMA_showMessage()
|
||||||
var notice_class = $("#topmenucontainer").next("div").find('.notice');
|
var $notice_class = $("#topmenucontainer").next("div").find('.notice');
|
||||||
if($(notice_class).text() == '') {
|
if ($notice_class.text() == '') {
|
||||||
$(notice_class).remove();
|
$notice_class.remove();
|
||||||
}
|
}
|
||||||
|
|
||||||
$("<span>" + PMA_messages['strReloadDatabase'] + "?</span>").dialog({
|
$("<span>" + PMA_messages['strReloadDatabase'] + "?</span>").dialog({
|
||||||
|
Reference in New Issue
Block a user