From c5352d82b5fc768e50a2fc47e7042d769792feb7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Scott=20Gonz=C3=A1lez?= Date: Fri, 11 Jul 2008 00:31:24 +0000 Subject: [PATCH] Dialog: Fixed #3086: Fixed problem with auto margins in IE. --- ui/ui.dialog.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ui/ui.dialog.js b/ui/ui.dialog.js index 663713ad4..7a80ad7e1 100644 --- a/ui/ui.dialog.js +++ b/ui/ui.dialog.js @@ -244,15 +244,15 @@ $.widget("ui.dialog", { pTop = Math.max(pTop, minTop); this.uiDialog.css({top: pTop, left: pLeft}); }, - + size: function() { var container = this.uiDialogContainer, titlebar = this.uiDialogTitlebar, content = this.element, - tbMargin = parseInt(content.css('margin-top'), 10) - + parseInt(content.css('margin-bottom'), 10), - lrMargin = parseInt(content.css('margin-left'), 10) - + parseInt(content.css('margin-right'), 10); + tbMargin = (parseInt(content.css('margin-top'), 10) || 0) + + (parseInt(content.css('margin-bottom'), 10) || 0), + lrMargin = (parseInt(content.css('margin-left'), 10) || 0) + + (parseInt(content.css('margin-right'), 10) || 0); content.height(container.height() - titlebar.outerHeight() - tbMargin); content.width(container.width() - lrMargin); }, -- 2.39.5