Skip to content

Commit c2455da

Browse files
committed
Fix for minimized state (php-debugbar#252)
1 parent fb9e263 commit c2455da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DebugBar/Resources/debugbar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -827,7 +827,7 @@ if (typeof(PhpDebugBar) == 'undefined') {
827827
*/
828828
recomputeBottomOffset: function() {
829829
if (this.options.bodyMarginBottom) {
830-
if (this.isMinimized() || this.isClosed()) {
830+
if (this.isClosed()) {
831831
return $('body').css('margin-bottom', this.options.bodyMarginBottomHeight || '');
832832
}
833833

0 commit comments

Comments
 (0)