Ignore:
Timestamp:
10/21/09 03:37:01 (3 years ago)
Author:
PaulHarvey
Message:

Item1558: TinyMCE project now supports Opera, so remove it from _BAD_BROWSERS

Location:
trunk/TinyMCEPlugin
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/TinyMCEPlugin

  • trunk/TinyMCEPlugin/lib/Foswiki/Plugins/TinyMCEPlugin.pm

    r5318 r5333  
    3838extended_valid_elements : "li[type]", 
    3939forced_root_block : false, 
     40moz_lists_hack: true, 
    4041setupcontent_callback : FoswikiTiny.setUpContent, 
    4142urlconverter_callback : "FoswikiTiny.convertLink", 
     
    139140    # Check the client browser to see if it is blacklisted 
    140141    my $ua = Foswiki::Func::getPreferencesValue('TINYMCEPLUGIN_BAD_BROWSERS') 
    141       || '(?i-xsm:Konqueror|Opera)'; 
     142      || '(?i-xsm:Konqueror)'; 
    142143    return 'Unsupported browser: ' . $query->user_agent() 
    143144      if $ua && $query->user_agent() && $query->user_agent() =~ /$ua/; 
Note: See TracChangeset for help on using the changeset viewer.