Ticket #4128: 4128.patch

File 4128.patch, 2.0 KB (added by Garry Yao, 15 years ago)
  • _source/plugins/dialog/plugin.js

     
    781781                                                        children : contents.elements,
    782782                                                        expand : !!contents.expand,
    783783                                                        padding : contents.padding,
    784                                                         style : contents.style || 'width: 100%; height: 100%;'
     784                                                        style : contents.style || 'width: 100%; height: 100%;',
     785                                                        width : contents.width
    785786                                                }, pageHtml );
    786787
    787788                        // Create the HTML for the tab and the content block.
  • CHANGES.html

     
    210210                <li><a href="http://dev.fckeditor.net/ticket/4123">#4123</a> : Some dialog buttons were broken in IE7 quirks.</li>
    211211                <li><a href="http://dev.fckeditor.net/ticket/4122">#4122</a> : [IE] The image dialog
    212212                        was being rendered improperly when loading an image with long URL.</li>
     213                <li><a href="http://dev.fckeditor.net/ticket/4128">#4128</a> : [IE] Image dialog has scrollbar in quirks mode.</li>
    213214        </ul>
    214215        <h3>
    215216                CKEditor 3.0 RC</h3>
  • _source/plugins/image/dialogs/image.js

     
    187187                };
    188188                return {
    189189                        title : ( dialogType == 'image' ) ? editor.lang.image.title : editor.lang.image.titleButton,
    190                         minWidth : 420,
     190                        minWidth : CKEDITOR.env.ie && CKEDITOR.env.quirks ? 436 : 420,
    191191                        minHeight : 310,
    192192                        onShow : function()
    193193                        {
     
    369369                        contents : [
    370370                                {
    371371                                        id : 'info',
     372                                        width : CKEDITOR.env.ie && CKEDITOR.env.quirks ? 410 : 0,
    372373                                        label : editor.lang.image.infoTab,
    373374                                        accessKey : 'I',
    374375                                        elements :
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy