Ticket #481: 481.patch

File 481.patch, 1.3 KB (added by Martin Kou, 16 years ago)
  • _whatsnew.html

     
    108108                        behind smiley icons and special characters in their corresponding dialogs.</li>
    109109                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1693">#1693</a>] Custom error messages are now
    110110                        properly displayed in the file browser.</li>
     111                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/481">#481</a>] Fixed the issue where the image
     112                        preview in image dialog sometimes doesn't display after selecting the image from server browser.</li>
    111113        </ul>
    112114        <p>
    113115                <a href="_whatsnew_history.html">See previous versions history</a>
  • editor/dialog/fck_image/fck_image.js

     
    385385function ResetSizes()
    386386{
    387387        if ( ! oImageOriginal ) return ;
     388        if ( oImageOriginal.width == 0 || oImageOriginal.height == 0 )
     389        {
     390                setTimeout( ResetSizes, 10 ) ;
     391                return ;
     392        }
    388393
    389394        GetE('txtWidth').value  = oImageOriginal.width ;
    390395        GetE('txtHeight').value = oImageOriginal.height ;
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy