Make WordPress Core

Ticket #33268: 33268.patch

File 33268.patch, 758 bytes (added by azaozz, 10 years ago)
  • src/wp-includes/js/wplink.js

     
    113113                        this.textarea = $( '#' + window.wpActiveEditor ).get( 0 );
    114114
    115115                        if ( typeof tinymce !== 'undefined' ) {
    116                                 // Make sure the link wrapper is the last element in the body.
    117                                 // Fixes z-index bug in iOS.
    118                                 if ( tinymce.Env.iOS ) {
    119                                         $body.append( inputs.backdrop, inputs.wrap );
    120                                 }
     116                                // Make sure the link wrapper is the last element in the body,
     117                                // or the inline editor toolbar may show above the backdrop.
     118                                $body.append( inputs.backdrop, inputs.wrap );
    121119
    122120                                ed = tinymce.get( wpActiveEditor );
    123121