Changeset 584
- Timestamp:
- 03/10/09 17:29:32 (3 years ago)
- Location:
- trunk/src/wymeditor/plugins
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wymeditor/plugins/fullscreen/jquery.wymeditor.fullscreen.js
r576 r584 36 36 jQuery(wym._box).find('li.wym_tools_fullscreen a').click(function() { 37 37 if (jQuery(wym._box).css('position') != 'fixed') { 38 $('body').append('<div id="loader"></div>');38 jQuery('body').append('<div id="loader"></div>'); 39 39 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'}); 40 40 jQuery(wym._box).css({'position' : 'fixed', 'z-index' : '99', 'top': '5%', 'left': '5%', 'width': '90%', 'height': '90%'}); 41 41 } else { 42 $('#loader').remove();42 jQuery('#loader').remove(); 43 43 jQuery(wym._box).css({'position' : 'static', 'z-index' : '99', 'height' : '100%', 'width' : '100%', 'top': '0px', 'left': '0px'}); 44 44 } -
trunk/src/wymeditor/plugins/resizable/jquery.wymeditor.resizable.js
r510 r584 90 90 91 91 // First get the jQuery UI base file 92 $.getScript(jQueryPlugins[0]);92 jQuery.getScript(jQueryPlugins[0]); 93 93 94 94 // Get the jQuery UI resizeable plugin and then init the wymeditor resize … … 96 96 // necessary jQuery UI files has finished, otherwise the "resizable" method 97 97 // would not be available. 98 $.getScript(jQueryPlugins[1], function() {98 jQuery.getScript(jQueryPlugins[1], function() { 99 99 jQuery(wym._box).resizable(final_options); 100 100 });
Note: See TracChangeset
for help on using the changeset viewer.