Changeset 616


Ignore:
Timestamp:
05/01/09 10:09:54 (3 years ago)
Author:
jf.hovinne
Message:

Fix #174 (thanks serialseb).

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/test/xhtml+xml.php

    r548 r616  
    4040 
    4141<script type="text/javascript"> 
    42  
    43 jQuery(function() { 
    44  
    45     try { 
    46         jQuery('.wymeditor').wymeditor({ 
     42;(function($) { 
     43    $(function() { 
     44        $('.wymeditor').wymeditor({ 
    4745            stylesheet: 'wym_stylesheet.css' 
    4846        }); 
    49     } catch(e) {}; 
    50  
    51     if( jQuery.browser.mozilla || jQuery.browser.safari ) { //fix CSS issue with FF 
    52         jQuery('div.wym_iframe').css('width', '87%'); 
    53         jQuery('div.wym_area_right').css('width', '12%'); 
    54     } 
    55 }); 
    56  
     47    }); 
     48})(jQuery); 
    5749</script> 
    5850 
  • trunk/src/wymeditor/skins/default/skin.js

    r481 r616  
    1515          .addClass("wym_dropdown") 
    1616          .find(WYMeditor.H2) 
    17           .append("<span>&nbsp;&gt;</span>"); 
     17          .append("<span>&#160;&gt;</span>"); 
    1818 
    1919        // auto add some margin to the main area sides if left area 
Note: See TracChangeset for help on using the changeset viewer.