Changeset 42874
- Timestamp:
- 03/24/2018 08:25:07 PM (7 years ago)
- Location:
- branches/4.9
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.9
-
branches/4.9/src/wp-admin/js/image-edit.js
r40020 r42874 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 -
branches/4.9/src/wp-includes/js/imgareaselect/jquery.imgareaselect.js
r33329 r42874 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.