Ticket #29909: 29909.patch
| File 29909.patch, 882 bytes (added by , 11 years ago) |
|---|
-
src/wp-admin/css/common.css
223 223 overflow: hidden; 224 224 } 225 225 226 body.mobile.modal-open #wpwrap { 227 overflow: hidden; 228 height: 100%; 229 } 230 226 231 iframe, 227 232 img { 228 233 border: 0; -
src/wp-includes/js/wplink.js
77 77 open: function( editorId ) { 78 78 var ed; 79 79 80 $( document.body ).addClass( 'modal-open' ); 81 80 82 wpLink.range = null; 81 83 82 84 if ( editorId ) { … … 166 168 }, 167 169 168 170 close: function() { 171 $( document.body ).removeClass( 'modal-open' ); 172 169 173 if ( ! wpLink.isMCE() ) { 170 174 wpLink.textarea.focus(); 171 175