From eabe39881178a827786dfbff4a95c817c60f6288 Mon Sep 17 00:00:00 2001 From: Rouslan Placella Date: Sun, 18 Mar 2012 23:36:35 +0000 Subject: [PATCH] Dialogs generated by PMA_confirm() should be modal --- js/functions.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/functions.js b/js/functions.js index 9a63b88606..0f2e7da1df 100644 --- a/js/functions.js +++ b/js/functions.js @@ -1919,7 +1919,8 @@ jQuery.fn.PMA_confirm = function(question, url, callbackFn) { buttons: button_options, close: function () { $(this).remove(); - } + }, + modal: true }); };