Merge branch 'QA_4_4'

This commit is contained in:
Marc Delisle 2015-04-08 11:29:05 -04:00
commit 966252d33b
2 changed files with 4 additions and 0 deletions

View File

@ -28,6 +28,7 @@ phpMyAdmin - ChangeLog
- bug #4839 DOC link in setting is broken
- bug #4841 Status page: Mislukte pogingen per uur value is incorrect
- bug MIME Transformation link fixed
- bug #4838 Prevents console window from moving out of the screen height
4.4.1.1 (2015-04-08)
- bug #4846 Web server's error log is flooded

View File

@ -456,6 +456,9 @@ var PMA_consoleResizer = {
* @return void
*/
_mousemove: function(event) {
if (event.pageY < 35) {
event.pageY = 35
}
PMA_consoleResizer._resultHeight = PMA_consoleResizer._height + (PMA_consoleResizer._posY -event.pageY);
// Content min-height is 32, if adjusting height small than it we'll move it out of the page
if(PMA_consoleResizer._resultHeight <= 32) {