Changeset 33294
- Timestamp:
- 07/16/2015 11:10:28 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/js/tinymce/plugins/wordpress/plugin.js
r33170 r33294 765 765 } ); 766 766 767 editor.on( 'remove', function() { 768 toolbar.remove(); 769 } ); 770 767 771 toolbar.reposition = reposition; 768 772 toolbar.hide().renderTo( document.body ); … … 831 835 DOM.bind( window, 'resize scroll', hide ); 832 836 editor.dom.bind( editor.getWin(), 'resize scroll', hide ); 837 838 editor.on( 'remove', function() { 839 DOM.unbind( window, 'resize scroll', hide ); 840 editor.dom.unbind( editor.getWin(), 'resize scroll', hide ); 841 } ); 842 833 843 editor.on( 'blur hide', hide ); 834 844
Note: See TracChangeset
for help on using the changeset viewer.