Ticket #2162: 2162.patch

File 2162.patch, 1.3 KB (added by alfonsoml, 23 months ago)

Proposed SVN patch

  • _whatsnew.html

     
    6262                        IE6 bug which causes floating dialogs to appear blank after opening it for the first time.</li> 
    6363                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2136">#2136</a>] Fixed JavaScript error in IE  
    6464                        when opening the bullet list properties dialog.</li> 
     65                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2162">#2162</a>] If the configuration is set 
     66                        to work including the &lt;head&gt; (FullPage), references to stylesheets added by Firefox extensions 
     67                        won't be added to the output.</li> 
    6568        </ul> 
    6669        <h3> 
    6770                Version 2.6</h3> 
  • editor/_source/internals/fckxhtml_gecko.js

     
    9999                return node ; 
    100100        } 
    101101} 
     102 
     103if ( FCKBrowserInfo.IsGecko ) 
     104{ 
     105        FCKXHtml.TagProcessors['link'] = function( node, htmlNode ) 
     106        { 
     107                if ( htmlNode.href.substr(0, 9).toLowerCase() == 'chrome://' ) 
     108                        return false ; 
     109 
     110                return node ; 
     111        } 
     112 
     113} 
     114 No newline at end of file