Changeset 42818
- Timestamp:
- 03/09/2018 05:26:53 PM (7 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/js/image-edit.js
r42411 r42818 654 654 * @returns {void} 655 655 */ 656 parent.children(). mousedown(function(e){656 parent.children().on( 'mousedown, touchstart', function(e){ 657 657 var ratio = false, sel, defRatio; 658 658 -
trunk/src/wp-includes/js/imgareaselect/jquery.imgareaselect.js
r33329 r42818 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();
Note: See TracChangeset
for help on using the changeset viewer.