> You could use write a simple plugin using browser sniffing* - TiddlyWiki
> provides a config.browser object for this:
>      if(config.browser.isIE) {
>          config.options.txtTheme = "legacyBrowsersTheme";
>      } else {
>          config.options.txtTheme = "modernBrowsersTheme";
>      }
>

Thanks for the fast reply. Also Opera displays gradients very ugly.
Therefore, could one write?:

    if(config.browser.isIE) {
       config.options.txtTheme = "IEBrowsersTheme";
    }
    if(config.browser.isOpera) {
       config.options.txtTheme = "OperaBrowsersTheme";
    } else {
       config.options.txtTheme = "modernBrowsersTheme";
    }
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to