documents panel: properly compute margin on resize

This commit is contained in:
rolux 2014-01-16 02:29:04 +00:00
parent a2d5f74a91
commit 2dae77989c

View file

@ -710,14 +710,16 @@ pandora.ui.documentsPanel = function(options) {
}
function resizeItem() {
var inputWidth = ui.documentSize - 16 - Ox.UI.SCROLLBAR_SIZE,
previewSize = getPreviewSize();
var size = getPreviewSize(),
width = ui.documentSize - 16 - Ox.UI.SCROLLBAR_SIZE;
$preview.options({
height: previewSize.height,
width: previewSize.width
height: size.height,
width: size.width
}).css({
margin: size.margin
});
$form.options('items').forEach(function($item) {
$item.options({width: inputWidth});
$item.options({width: width});
});
}