Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMadhura Jayaratne <madhura.cj@gmail.com>2015-04-30 10:18:54 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2015-04-30 10:18:54 +0300
commit5cd5f55ea7f1ec0f75d11dc6619224a0ec0653e3 (patch)
tree1f2c7f04b21dd53ba001fd6e76eb255b95a5583f /js/functions.js
parentbd7e60891c376c7b2c7cb4ff22f6a96c4306ac9e (diff)
Append to #page_content to be visible in fullscreen
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
Diffstat (limited to 'js/functions.js')
-rw-r--r--js/functions.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/functions.js b/js/functions.js
index 49bb1f6269..a81062617d 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -2068,7 +2068,7 @@ function PMA_ajaxShowMessage(message, timeout)
// Create a parent element for the AJAX messages, if necessary
if ($('#loading_parent').length === 0) {
$('<div id="loading_parent"></div>')
- .prependTo("body");
+ .prependTo("#page_content");
}
// Update message count to create distinct message elements every time
ajax_message_count++;