Make WordPress Core

Ticket #31652: 31652.2.diff

File 31652.2.diff, 3.9 KB (added by adamsilverstein, 8 years ago)
  • src/wp-admin/edit-form-advanced.php

     
    3838        $_wp_editor_expand = ( get_user_setting( 'editor_expand', 'on' ) === 'on' );
    3939}
    4040
    41 if ( wp_is_mobile() )
    42         wp_enqueue_script( 'jquery-touch-punch' );
     41wp_enqueue_script( 'jquery-touch-punch' );
    4342
    4443/**
    4544 * Post ID global
  • src/wp-admin/index.php

     
    2525        wp_enqueue_script( 'media-upload' );
    2626add_thickbox();
    2727
    28 if ( wp_is_mobile() )
    29         wp_enqueue_script( 'jquery-touch-punch' );
     28wp_enqueue_script( 'jquery-touch-punch' );
    3029
    3130$title = __('Dashboard');
    3231$parent_file = 'index.php';
  • src/wp-admin/link-add.php

     
    2020wp_enqueue_script('link');
    2121wp_enqueue_script('xfn');
    2222
    23 if ( wp_is_mobile() )
    24         wp_enqueue_script( 'jquery-touch-punch' );
     23wp_enqueue_script( 'jquery-touch-punch' );
    2524
    2625$link = get_default_link_to_edit();
    2726include( ABSPATH . 'wp-admin/edit-link-form.php' );
  • src/wp-admin/link.php

     
    9696                wp_enqueue_script('link');
    9797                wp_enqueue_script('xfn');
    9898
    99                 if ( wp_is_mobile() )
    100                         wp_enqueue_script( 'jquery-touch-punch' );
     99                wp_enqueue_script( 'jquery-touch-punch' );
    101100
    102101                $parent_file = 'link-manager.php';
    103102                $submenu_file = 'link-manager.php';
  • src/wp-admin/nav-menus.php

     
    2929
    3030wp_enqueue_script( 'nav-menu' );
    3131
    32 if ( wp_is_mobile() )
    33         wp_enqueue_script( 'jquery-touch-punch' );
     32wp_enqueue_script( 'jquery-touch-punch' );
    3433
    3534// Container for any messages displayed to the user
    3635$messages = array();
  • src/wp-admin/widgets.php

     
    3131} else {
    3232        wp_enqueue_script('admin-widgets');
    3333
    34         if ( wp_is_mobile() )
    35                 wp_enqueue_script( 'jquery-touch-punch' );
     34        wp_enqueue_script( 'jquery-touch-punch' );
    3635}
    3736
    3837/**
  • src/wp-includes/js/media/views/attachments.js

     
    156156        initSortable: function() {
    157157                var collection = this.collection;
    158158
    159                 if ( wp.media.isTouchDevice || ! this.options.sortable || ! $.fn.sortable ) {
     159                if ( ! this.options.sortable || ! $.fn.sortable ) {
    160160                        return;
    161161                }
    162162
     
    215215        },
    216216
    217217        refreshSortable: function() {
    218                 if ( wp.media.isTouchDevice || ! this.options.sortable || ! $.fn.sortable ) {
     218                if ( ! this.options.sortable || ! $.fn.sortable ) {
    219219                        return;
    220220                }
    221221
  • src/wp-includes/js/media-views.js

     
    35883588        initSortable: function() {
    35893589                var collection = this.collection;
    35903590
    3591                 if ( wp.media.isTouchDevice || ! this.options.sortable || ! $.fn.sortable ) {
     3591                if ( ! this.options.sortable || ! $.fn.sortable ) {
    35923592                        return;
    35933593                }
    35943594
     
    36473647        },
    36483648
    36493649        refreshSortable: function() {
    3650                 if ( wp.media.isTouchDevice || ! this.options.sortable || ! $.fn.sortable ) {
     3650                if ( ! this.options.sortable || ! $.fn.sortable ) {
    36513651                        return;
    36523652                }
    36533653