Pop-up dialogs displayed from plugins when using IE7 not sized correctly.
-------------------------------------------------------------------------
Key: ROL-1729
URL: https://issues.apache.org/roller/browse/ROL-1729
Project: Roller
Issue Type: Bug
Components: Weblog Editor
Affects Versions: 4.0
Environment: IE7, Roller 4.0
Reporter: Terry Smith
Assignee: Roller Unassigned
Priority: Minor
Pop-up dialogs displayed from plugins when using IE7 do not size correctly to
show all content. Change the following line in dialog.js to be compatible
with IE7.
Dialog._geckoOpenModal = function(url, action, init) {
var dlg = window.open(url, "hadialog",
// Change sizing to zero to have browser resize according to content (for IE7
mostly).
//
"toolbar=no,menubar=no,personalbar=no,width=10,height=10," +
"toolbar=no,menubar=no,personalbar=no,width=0,height=0," +
"scrollbars=no,resizable=yes,modal=yes,dependable=yes");
Dialog._modal = dlg;
Dialog._arguments = init;
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.