Fix calendar entries mess up after editing an integrated entry (eg. infolog) while the calendar is not the active tab (happens only in F.F.)

This commit is contained in:
Hadi Nategh 2014-10-09 14:19:00 +00:00
parent 0bc8a74135
commit b6e381365a

View File

@ -616,6 +616,10 @@ egw_fw_ui_tab.prototype.show = function()
{
$j(this.tag.browser.contentDiv).trigger('show');
}
else if(content) // if the content is an iframe (eg. Calendar views)
{
$j(content).find('.egw_fw_content_browser_iframe').trigger('show');
}
}
};