From 8841a26788e297e5734481eb3123bd7f59b570ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 17 Jul 2017 17:09:10 +0200 Subject: [PATCH] Fixed size of index edit dialog MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #13382 Signed-off-by: Michal Čihař --- ChangeLog | 1 + js/functions.js | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0429fed118..8181dc585c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -9,6 +9,7 @@ phpMyAdmin - ChangeLog - issue #13475 Fixed export without backquotes - issue #13482 Improved handling of uploaded files with open_basedir - issue #13387 Fixed inline editing of hex values +- issue #13382 Fixed size of index edit dialog 4.7.2 (2017-06-29) - issue #13314 Make theme selection keep current server diff --git a/js/functions.js b/js/functions.js index a7e7840d0e..220c29dbed 100644 --- a/js/functions.js +++ b/js/functions.js @@ -3869,8 +3869,7 @@ function indexEditorDialog(url, title, callback_success, callback_failure) .append(data.message) .dialog({ title: title, - width: 450, - height: 350, + width: 'auto', open: PMA_verifyColumnsProperties, modal: true, buttons: button_options,