Fixed the issue related to set proper height, width of the div of a frame in

wcFrame. This is only happens only in the Firefox browser.

This was regression of the commit-id:
9a832086c5.
pull/3/head
Neel Patel 2016-05-23 13:22:16 +05:30 committed by Ashesh Vashi
parent 1724787f2a
commit aff0d417bb
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ function(_, pgAdmin) {
myPanel.closeable(!!that.isCloseable);
var $frameArea = $('<div style="position:absolute;top:0 !important;min-width:100%;min-height:100%;display:table">');
var $frameArea = $('<div style="position:absolute;top:0 !important;width:100%;height:100%;display:table">');
myPanel.layout().addItem($frameArea);
that.panel = myPanel;
var frame = new wcIFrame($frameArea, myPanel);