#1622: CSS cache in JS
----------------------------+-----------------------------------------------
  Reporter:  designfu       |       Owner:  fredck 
      Type:  New Feature    |      Status:  new    
  Priority:  Normal         |   Milestone:         
 Component:  Core : Styles  |     Version:  SVN    
Resolution:                 |    Keywords:  Review-
----------------------------+-----------------------------------------------
Changes (by alfonsoml):

  * keywords:  Review? => Review-

Comment:

 The fck_dialog_common.css file is missing the warning that its contents
 are compressed in another file.

 You have removed the ability in FCKTools._AppendStyleSheet to return the
 created stylesheet, but that means that if someone wants to append a
 stylesheet and then do something else with that node he will have to write
 extra code. For example I've found a plugin were I added a stylesheet and
 then according to the state I enable or disable that stylesheet thanks to
 keeping a reference to the returned node.

 The loop
 {{{
                         for ( var i = 0 ; i < cssFileOrArrayOrDef.length ;
 i++ )
                                 html += getLink( cssFileOrArrayOrDef,
 markTemp ) ;
 }}}

 should be
 {{{
                         for ( var i = 0 ; i < cssFileOrArrayOrDef.length ;
 i++ )
                                 html += getLink( cssFileOrArrayOrDef[i],
 markTemp ) ;
 }}}

-- 
Ticket URL: <http://dev.fckeditor.net/ticket/1622#comment:10>
FCKeditor <http://www.fckeditor.net>
The text editor for Internet
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
FCKeditor-Trac mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/fckeditor-trac

Reply via email to