svn path=/Website/branches/v2016.3/; revision=32484
This commit is contained in:
2017-01-23 10:10:28 +00:00
parent 80011a7283
commit a0e485e712

View File

@@ -674,6 +674,13 @@ var FcltMgr =
// Ook al is onze <iframe> de dialog moeten we deze wel afzonderlijk te zetten?
$(frm).width(newWidth);
var newWidth2 = Math.min(frmcontent.outerWidth()+extraWidth , $(window).width()-10);
if (newWidth2 > newWidth) // FSN#39111
{
$('iframe#fcltmodal'+FcltMgr._modalCount).dialog('option', 'width', newWidth2);
$(frm).width(newWidth2);
}
if (FcltMgr.isTouchscreen())
$('iframe#fcltmodal'+FcltMgr._modalCount).dialog('option', 'position', { my: "top", at: "top", of: window });
else