Merge remote-tracking branch 'origin/QA_4_4' into QA_4_4
This commit is contained in:
commit
b7eec7db2b
@ -8,6 +8,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
|
||||
|
||||
@ -432,6 +432,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) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user