Changeset 659
- Timestamp:
- 04/11/10 21:53:07 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wymeditor/plugins/fullscreen/jquery.wymeditor.fullscreen.js
r657 r659 70 70 $box.find('li.wym_tools_fullscreen a').click(function() { 71 71 if ($box.css('position') != 'fixed') { 72 // Store previous inline styles 73 $box.data('wym-inline-css', $box.attr('style')); 74 $iframe.data('wym-inline-css', $iframe.attr('style')); 75 72 76 // Create overlay 73 77 $overlay = jQuery('<div id="wym-fullscreen-overlay"></div>') … … 113 117 $overlay.remove(); 114 118 $overlay = null; 119 120 // Retore previous inline styles 121 $box.attr('style', $box.data('wym-inline-css')); 122 $iframe.attr('style', $iframe.data('wym-inline-css')); 115 123 } 116 124
Note: See TracChangeset
for help on using the changeset viewer.