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
path: root/js/pmd
diff options
context:
space:
mode:
authorMadhura Jayaratne <madhura.cj@gmail.com>2015-04-30 10:11:43 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2015-04-30 10:16:38 +0300
commitbd7e60891c376c7b2c7cb4ff22f6a96c4306ac9e (patch)
tree0cc313466fd2d042cd7e5af9ef5db09c52d1a858 /js/pmd
parentf07fc445929fcbc91cc983a810121d4856df70ba (diff)
bug #4881 jQuery dialogs of the Designer are not displayed in fullscreen
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
Diffstat (limited to 'js/pmd')
-rw-r--r--js/pmd/move.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/js/pmd/move.js b/js/pmd/move.js
index 9ef2b293bd..8c13e78dee 100644
--- a/js/pmd/move.js
+++ b/js/pmd/move.js
@@ -675,6 +675,7 @@ function Save3(callback)
$('<div id="page_save_dialog"></div>')
.append($form)
.dialog({
+ appendTo: '#page_content',
title: PMA_messages.strSavePage,
width: 300,
modal: true,
@@ -722,6 +723,7 @@ function Edit_pages()
$('<div id="page_edit_dialog"></div>')
.append(data.message)
.dialog({
+ appendTo: '#page_content',
title: PMA_messages.strOpenPage,
width: 350,
modal: true,
@@ -802,6 +804,7 @@ function Delete_pages()
$('<div id="page_delete_dialog"></div>')
.append(data.message)
.dialog({
+ appendTo: '#page_content',
title: PMA_messages.strDeletePage,
width: 350,
modal: true,
@@ -900,6 +903,7 @@ function Save_as()
$('<div id="page_save_as_dialog"></div>')
.append(data.message)
.dialog({
+ appendTo: '#page_content',
title: "Save table coordinates",
width: 450,
modal: true,
@@ -934,6 +938,7 @@ function Prompt_to_save_current_page(callback)
$('<div id="prompt_save_dialog"></div>')
.append('<div>' + PMA_messages.strLeavingPage + '</div>')
.dialog({
+ appendTo: '#page_content',
title: PMA_messages.strSavePage,
width: 300,
modal: true,
@@ -981,6 +986,7 @@ function Export_pages()
$('<div id="page_export_dialog"></div>')
.append($form)
.dialog({
+ appendTo: '#page_content',
title: PMA_messages.strExportRelationalSchema,
width: 550,
modal: true,