Changeset 32966
- Timestamp:
- 06/27/2015 02:14:29 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/js/press-this.js
r32920 r32966 17 17 isHidden = 'is-hidden', 18 18 offscreenHidden = isOffScreen + ' ' + isHidden, 19 iOS = /iPad|iPod|iPhone/.test( window.navigator.userAgent ), 19 20 transitionEndEvent = ( function() { 20 21 var style = document.documentElement.style; … … 620 621 window.tagBox.init(); 621 622 } 623 624 // iOS doesn't fire click events on "standard" elements without this... 625 if ( iOS ) { 626 $( document.body ).css( 'cursor', 'pointer' ); 627 } 622 628 } 623 629
Note: See TracChangeset
for help on using the changeset viewer.