Merge branch 'QA_5_2'
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
This commit is contained in:
commit
e6ae49e581
@ -13,6 +13,7 @@ phpMyAdmin - ChangeLog
|
||||
- issue #17517 Fix Database Server panel not getting hidden by ShowServerInfo configuration directive
|
||||
- issue #17271 Fix database names not showing on Processes tab
|
||||
- issue #17424 Fix export limit size calculation
|
||||
- issue #17366 Fix refresh rate popup on Monitor page
|
||||
|
||||
5.2.0 (2022-05-10)
|
||||
- issue #16521 Upgrade Bootstrap to version 5
|
||||
|
||||
@ -101,9 +101,7 @@ AJAX.registerOnload('server/status/monitor.js', function () {
|
||||
var $cnt = $(this);
|
||||
var pos = $cnt.offset();
|
||||
// Hide if the mouseclick is outside the popupcontent
|
||||
if (event.pageX < pos.left ||
|
||||
event.pageY < pos.top ||
|
||||
event.pageX > pos.left + $cnt.outerWidth() ||
|
||||
if (event.pageX > pos.left + $cnt.outerWidth() ||
|
||||
event.pageY > pos.top + $cnt.outerHeight()
|
||||
) {
|
||||
$cnt.hide().removeClass('openedPopup');
|
||||
|
||||
Loading…
Reference in New Issue
Block a user