Re: PasteHTML on Firefox 3.6.9 and later

  •  09-19-2010, 8:54 PM

    Re: PasteHTML on Firefox 3.6.9 and later

    Hi hobohobo,
     
    Issue 1,
     
    Try set URLType="absolute".
     
         <CE:Editor ID="Editor1" runat="server" URLType="absolute">
                </CE:Editor>
     
    Issue 2,
     
    Add the code below into your page which contains CuteEditor
     
    1. <script>   
    2. function CuteEditor_FilterHTML(editor,code)   
    3. {   
    4.   return code.split("%7B%7B").join("{").split("%7D%7D").join("}");   
    5. }   
    6. function CuteEditor_FilterCode(editor,code)   
    7. {   
    8. return code.split("%7B%7B").join("{").split("%7D%7D").join("}");   
    9. }   
    10. </script>  
     
    Regards,
     
    Ken
View Complete Thread