Bug #3163260 Database copy: Error hides too quickly

This commit is contained in:
Marc Delisle
2011-01-23 07:34:50 -05:00
parent ac1bdef784
commit 63a224b05a

View File

@@ -91,8 +91,11 @@ $(document).ready(function() {
} }
$.get($form.attr('action'), $form.serialize(), function(data) { $.get($form.attr('action'), $form.serialize(), function(data) {
// use messages that stay on screen
$('.success').fadeOut();
$('.error').fadeOut();
if(data.success == true) { if(data.success == true) {
PMA_ajaxShowMessage(data.message); $('#topmenucontainer').after(data.message);
if( $("#checkbox_switch").is(":checked")) { if( $("#checkbox_switch").is(":checked")) {
window.parent.db = data.newname; window.parent.db = data.newname;
window.parent.refreshMain(); window.parent.refreshMain();
@@ -100,7 +103,7 @@ $(document).ready(function() {
} }
} }
else { else {
PMA_ajaxShowMessage(data.error); $('#topmenucontainer').after(data.error);
} }
}) // end $.get }) // end $.get
}) // end copy database }) // end copy database