On Thu, 2007-04-26 at 09:27 +0200, Denis Banovic wrote: > Hi Clint, > > Thank you for making this possible, it works just fine under Firefox!
Hi Denis Thanks for your thanks. I don't want to hijack the mod_perl list, so if anybody else has further queries / bugs, please send them to me directly. It works in IE / Opera - the problem is in your javascript: > > But Opera / IE6 / IE7 are making problems > > Error: TinyMCE is not defined > > Here is my Init: > > > <script type="text/javascript" src="/js/cms/tiny_mce_gzip.js"></script> > <script type="text/javascript"> > tinyMCE_GZ.init({ > plugins : 'preview,contextmenu,advlink', > themes : 'advanced', > languages : 'de', > disk_cache : true, Here is the problem - you have a trailing comma in the last line - something that is considered good style in Perl, but an error in javascript. > }); > </script> Clint