diff --git src/wp-admin/js/image-edit.js src/wp-admin/js/image-edit.js
index 0d8eaf081f..14af25eaf6 100644
|
|
|
627 | 627 | * |
628 | 628 | * @returns {void} |
629 | 629 | */ |
630 | | parent.children().mousedown(function(e){ |
| 630 | parent.children().on( 'mousedown, touchstart', function(e){ |
631 | 631 | var ratio = false, sel, defRatio; |
632 | 632 | |
633 | 633 | if ( e.shiftKey ) { |
diff --git src/wp-includes/js/imgareaselect/jquery.imgareaselect.js src/wp-includes/js/imgareaselect/jquery.imgareaselect.js
index f017895f15..a80c3626b9 100644
|
|
$.imgAreaSelect = function (img, options) { |
748 | 748 | */ |
749 | 749 | function imgMouseDown(event) { |
750 | 750 | /* Ignore the event if animation is in progress */ |
751 | | if (event.which != 1 || $outer.is(':animated')) return false; |
| 751 | if (event.which > 1 || $outer.is(':animated')) return false; |
752 | 752 | |
753 | 753 | adjust(); |
754 | 754 | startX = x1 = evX(event); |