Ticket #191: 191_2.patch

File 191_2.patch, 1.5 kB (added by fredck, 7 months ago)
  • _whatsnew.html

     
    4747                        several "strict warning" messages in Firefox when running FCKeditor.</li> 
    4848                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1522">#1522</a>] The ENTER 
    4949                        key will now work properly in IE with the cursor at the start of a formatted block.</li> 
     50                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/191">#191</a>] The scrollbars 
     51                        are now being properly shown in Firefox Mac when placing FCKeditor inside a hidden 
     52                        div.</li> 
    5053        </ul> 
    5154        <p> 
    5255                <a href="_whatsnew_history.html">See previous versions history</a> 
  • editor/_source/classes/fckpanel.js

     
    186186                        FCKPanel_Window_OnBlur( null, this.ParentPanel ) ; 
    187187                } 
    188188 
     189                // Toggle the iframe scrolling attribute to prevent the panel 
     190                // scrollbars from disappearing in FF Mac. (#191) 
     191                if ( FCKBrowserInfo.IsGecko && FCKBrowserInfo.IsMac ) 
     192                { 
     193                        this._IFrame.scrolling = '' ; 
     194                        FCKTools.RunFunction( function(){ this._IFrame.scrolling = 'no'; }, this ) ; 
     195                } 
     196 
    189197                // Be sure we'll not have more than one Panel opened at the same time. 
    190198                if ( FCKPanel._OpenedPanel ) 
    191199                        FCKPanel._OpenedPanel.Hide() ;