Changeset 584


Ignore:
Timestamp:
03/10/09 17:29:32 (3 years ago)
Author:
mr_lundis
Message:

Updated plugins to use jQuery directly instead of the $-shorthand, fixes #162.

Location:
trunk/src/wymeditor/plugins
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wymeditor/plugins/fullscreen/jquery.wymeditor.fullscreen.js

    r576 r584  
    3636  jQuery(wym._box).find('li.wym_tools_fullscreen a').click(function() { 
    3737    if (jQuery(wym._box).css('position') != 'fixed') { 
    38       $('body').append('<div id="loader"></div>'); 
     38      jQuery('body').append('<div id="loader"></div>'); 
    3939      jQuery('#loader').css({'position' : 'fixed', 'background-color': 'rgb(0, 0, 0)', 'opacity': '0.8', 'z-index': '98', 'width': '100%', 'height': '100%', 'top': '0px', 'left': '0px'}); 
    4040      jQuery(wym._box).css({'position' : 'fixed', 'z-index' : '99', 'top': '5%', 'left': '5%', 'width': '90%', 'height': '90%'}); 
    4141    } else { 
    42       $('#loader').remove(); 
     42      jQuery('#loader').remove(); 
    4343      jQuery(wym._box).css({'position' : 'static', 'z-index' : '99', 'height' : '100%', 'width' : '100%', 'top': '0px', 'left': '0px'}); 
    4444    } 
  • trunk/src/wymeditor/plugins/resizable/jquery.wymeditor.resizable.js

    r510 r584  
    9090     
    9191    // First get the jQuery UI base file 
    92     $.getScript(jQueryPlugins[0]); 
     92    jQuery.getScript(jQueryPlugins[0]); 
    9393 
    9494    // Get the jQuery UI resizeable plugin and then init the wymeditor resize 
     
    9696    // necessary jQuery UI files has finished, otherwise the "resizable" method 
    9797    // would not be available. 
    98     $.getScript(jQueryPlugins[1], function() {      
     98    jQuery.getScript(jQueryPlugins[1], function() {      
    9999        jQuery(wym._box).resizable(final_options); 
    100100    }); 
Note: See TracChangeset for help on using the changeset viewer.