Make WordPress Core

Ticket #36876: 36876.patch

File 36876.patch, 752 bytes (added by iseulde, 9 years ago)
  • src/wp-includes/js/tinymce/plugins/wordpress/plugin.js

     
    902902                                if ( activeToolbar.tempHide || event.type === 'hide' ) {
    903903                                        activeToolbar.hide();
    904904                                        activeToolbar = false;
    905                                 } else if ( ( event.type === 'resize' || event.type === 'scroll' ) && ! activeToolbar.blockHide ) {
     905                                } else if (
     906                                        tinymce.inArray( event.type, [ 'scroll', 'scrollwindow', 'resize', 'resizewindow' ] ) &&
     907                                        ! activeToolbar.blockHide
     908                                ) {
    906909                                        clearTimeout( timeout );
    907910
    908911                                        timeout = setTimeout( function() {