Make WordPress Core

Changeset 22866


Ignore:
Timestamp:
11/27/2012 03:00:00 PM (12 years ago)
Author:
ryan
Message:

Fix dragging in IE10 on touch devices.

Props georgestephanis, koopersmith
fixes #22583

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/css/wp-admin.css

    r22837 r22866  
    83048304}
    83058305
     8306/* Enable draggable on IE10 touch events until it's rolled into jQuery UI core */
     8307.ui-sortable,
     8308.ui-draggable {
     8309    -ms-touch-action: none;
     8310}
     8311
    83068312/* =Media Queries
    83078313-------------------------------------------------------------- */
  • trunk/wp-includes/css/media-views.css

    r22825 r22866  
    5454}
    5555
     56/* Enable draggable on IE10 touch events until it's rolled into jQuery UI core */
     57.ui-sortable,
     58.ui-draggable {
     59    -ms-touch-action: none;
     60}
     61
    5662/**
    5763 * Modal
Note: See TracChangeset for help on using the changeset viewer.