We recently fixed a long standing issue we had in our webapps with
Safari (and consequently Chrome). We had redrawing issues where
scrolling causes blurring of the screen.
Here is the trick we did - add a DIV to the page.
> if(navigator.userAgent.indexOf("Safari") != -1) {
> // trick to force screen caching by Safari
> var v = document.createElement("DIV");
> document.body.appendChild(v);
> with( v.style ) {
> position = "fixed";
> left = "0px"; top = "0px";
> width ="1px"; height="1px";
> }
> }
I don't know if this will have anything to do with editor plugin
troubles with Safari, but offer it in case it helps.
Regards,
Dave
On Sep 10, 2008, at 7:34 AM, Dave wrote:
On Wed, Sep 10, 2008 at 5:39 AM, Frans Thamura <[EMAIL PROTECTED]>
wrote:
why the roller thing chrome = mozilla 1.0
Roller has no such restriction. I bet that message came from the
plugin editor that you are using. You might want to try a different
one or just use the plain text editor with Chrome.
None of the editor plugins work well with Safari, as far as I can
tell.
- Dave