From 2e03d11e342266f26f0efb19227aa48279391d7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 28 Nov 2017 15:36:12 +0100 Subject: [PATCH] Remove artifical limit for navigation width MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I have no clue what were the original intentions here, but this doesn't make sense at all. Fixes #13816 Signed-off-by: Michal Čihař --- js/navigation.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/js/navigation.js b/js/navigation.js index 6d1ef25705..d1aabde459 100644 --- a/js/navigation.js +++ b/js/navigation.js @@ -1117,9 +1117,6 @@ var ResizeHandler = function () { var resizer_width = $resizer.width(); var $collapser = $('#pma_navigation_collapser'); var windowWidth = $(window).width(); - if (pos > 240 && windowWidth > 768) { - pos = 241; - } $('#pma_navigation').width(pos); $('body').css('margin-' + this.left, pos + 'px'); $('#floating_menubar, #pma_console')