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:
authorChristian Foellmann <foellmann@foe-services.de>2015-01-07 22:30:46 +0300
committerChristian Foellmann <foellmann@foe-services.de>2015-01-07 22:30:46 +0300
commit72f864ff50d01b8bc18904db7a6ba4fa32c44783 (patch)
tree5e21bb2e65452081461e762eab72e5d8c577dec5 /js/pmd
parent170cb05f4eec4322303658108f9eea6e55163e50 (diff)
UPDATE 4.3.64.3.6
Diffstat (limited to 'js/pmd')
-rw-r--r--js/pmd/designer_page.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/pmd/designer_page.js b/js/pmd/designer_page.js
index d56df13b6e..4ef3f28429 100644
--- a/js/pmd/designer_page.js
+++ b/js/pmd/designer_page.js
@@ -97,10 +97,10 @@ function Show_new_page_tables(check)
for (var tab in all_tables) {
var input = all_tables[tab];
if (input.value) {
- VisibleTab(input, input.value);
var element = document.getElementById(input.value);
element.style.top = Get_random(550, 20) + 'px';
element.style.left = Get_random(700, 20) + 'px';
+ VisibleTab(input, input.value);
}
}
selected_page = -1;