Make WordPress Core

Ticket #27013: 27013.2.patch

File 27013.2.patch, 638 bytes (added by iseulde, 11 years ago)
  • src/wp-admin/js/post.js

     
    10641064                });
    10651065        }
    10661066
    1067         if ( ! ( 'ontouchstart' in window ) ) {
     1067        if ( ! ( 'ontouchstart' in window ) && $( 'body' ).hasClass( 'wp-admin' ) ) {
    10681068                // When scrolling with mouse wheel or trackpad inside the Text editor, don't scroll the whole window
    10691069                $content = $('#content').on( 'onwheel' in $document[0] ? 'wheel.text-editor-scroll' : 'mousewheel.text-editor-scroll', function( event ) {
    10701070                        var delta, origEvent = event.originalEvent;