Remove previous queries if any before inserting the latest query. We

don't want too many queries crowding up.
This commit is contained in:
ninadsp
2010-07-11 00:14:12 +05:30
parent 6230a545bf
commit e98edae53b
3 changed files with 15 additions and 3 deletions

View File

@@ -38,7 +38,11 @@ $(document).ready(function() {
PMA_ajaxShowMessage(data.message);
window.parent.db = data.newname;
$("#topmenucontainer").after(data.sql_query);
$("#topmenucontainer")
.next('div')
.remove()
.end()
.after(data.sql_query);
$("<span>" + PMA_messages['strReloadDatabase'] + "?</span>").dialog({
buttons: button_options