Changeset 22606
- Timestamp:
- 11/16/2012 12:34:07 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/js/post.js
r22442 r22606 620 620 (function() { 621 621 var textarea = $('textarea#content'), offset = null, el; 622 // No point for touch devices 623 if ( 'ontouchstart' in window ) 624 return; 622 625 623 626 function dragging(e) { … … 651 654 if ( typeof(tinymce) != 'undefined' ) { 652 655 tinymce.onAddEditor.add(function(mce, ed){ 653 if ( ed.id != 'content' ) 656 // iOS expands the iframe to full height and the user cannot adjust it. 657 if ( ed.id != 'content' || tinymce.isIOS5 ) 654 658 return; 655 659
Note: See TracChangeset
for help on using the changeset viewer.