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>2014-11-20 08:08:16 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2014-11-20 08:08:16 +0300
commitf920cc93c02f30cae550670cbd7f1afde0238a1d (patch)
treee17f36a364e8de6700545bc8a3bebf5a1e48a554 /js/tbl_structure.js
parentc8549e988616ec26c1a519d8313e5bc8933e70c2 (diff)
Simplify the structure
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
Diffstat (limited to 'js/tbl_structure.js')
-rw-r--r--js/tbl_structure.js7
1 files changed, 1 insertions, 6 deletions
diff --git a/js/tbl_structure.js b/js/tbl_structure.js
index 037fcef5b5..c1c6a6afd6 100644
--- a/js/tbl_structure.js
+++ b/js/tbl_structure.js
@@ -77,12 +77,7 @@ function reloadFieldForm() {
function showTableStructureEditPage(data, $msg) {
PMA_ajaxRemoveMessage($msg);
if (data.success) {
- $('#page_content')
- .empty()
- .append(
- $('<div id="change_column_dialog"></div>')
- .html(data.message)
- );
+ $('#page_content').html(data.message);
PMA_highlightSQL($('#page_content'));
PMA_showHints();
PMA_verifyColumnsProperties();