Hi
I've experienced some problems with the image popup (combined with imce) in the resizing of the window that is opened by clicking on the image inserting link.
In IE the resizing works ok, but in Firefox the button for adding a image is cropped because the resizing works weird
I've dived into code and i found "something", in the tiny_mce_popup.js file, in the TinyMCE_Popup "object", in resizeToInnerSize
dx = tinyMCE.getWindowArg('mce_width') - iframe.clientWidth;
dy = tinyMCE.getWindowArg('mce_height') - iframe.clientHeight;
// Resize window
// tinyMCE.debug(tinyMCE.getWindowArg('mce_width') + "," + tinyMCE.getWindowArg('mce_height') + " - " + dx + "," + dy);
window.resizeBy(dx, dy);
I've changed the resize to this, and it works for me
window.resizeBy(dx + 50, dy);
I know that is not the elegant solution for this but it worked for me!
Could you tell me something about this issue? Thanks
Comments
Comment #1
gemini commentedI have the same problem with the "Insert/Modify Table" pop-up window.
P.S. Actually, I just realized that all pop-up windows are being resized like that.
Comment #2
cryonix commentedhaving the same issue here, I've also had the same exact problem with FCKeditor, I have a feeling its unique to Firefox and not just the modules... ill try the code change you've provided till I figure out the greater issue at hand
EDIT:
I figured one way to fix this through firefox which requires to modify about:config.
in the address bar type about:config
locate the entry titled "dom.disable_window_open_feature.resizable"
by default it is set to false
Right click the entry and click "toggle" to switch it to true,
this will allow ALL pop ups to be resizeable, which personally is a desirable function anyway.
its not the best fix but at least this way you can resize the window to see whats cropped off
.
hope this helps you all for now.
Comment #3
pomliane commentedThis version of TinyMCE is not supported anymore. The issue is closed for this reason.
Please upgrade to a supported version and feel free to reopen the issue on the new version if applicable.
This issue has been automagically closed by a script.