Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
I'm creating a chart-tool for one of our clients. They wanted it as a macro for use in the RTE so that they can get charts anywhere on the site.
The problem is that the Edit Macro modal popup is to small.
Is there any way to make that popup bigger?
Ok found it myself.
In the file \umbraco_client\tinymce3\plugins\umbracomacro\editor_plugin_src.js I found some code that I changed the width and height in:
ed.windowManager.open({ file: tinyMCE.activeEditor.getParam('umbraco_path') + '/plugins/tinymce3/insertMacro.aspx?editor=trueurl' + urlParams, width: 680 + parseInt(ed.getLang('umbracomacro.delta_width', 0)), //changed the width for the chartmacro height: 570 + parseInt(ed.getLang('umbracomacro.delta_height', 0)), inline: 1 }, { plugin_url: url // Plugin absolute URL });
I could't se the changes at first because of the heavy cacheing involved.
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Resizing RTE macro popup
I'm creating a chart-tool for one of our clients. They wanted it as a macro for use in the RTE so that they can get charts anywhere on the site.
The problem is that the Edit Macro modal popup is to small.
Is there any way to make that popup bigger?
Ok found it myself.
In the file \umbraco_client\tinymce3\plugins\umbracomacro\editor_plugin_src.js I found some code that I changed the width and height in:
I could't se the changes at first because of the heavy cacheing involved.
is working on a reply...