Make WordPress Core

Ticket #22541: 22541-4.patch

File 22541-4.patch, 4.0 KB (added by azaozz, 12 years ago)
  • wp-admin/js/wp-fullscreen.js

     
    482482        }
    483483
    484484        api.medialib = function() {
    485                 if ( s.has_tinymce && 'tinymce' === s.mode ) {
    486                         tinyMCE.execCommand('WP_Medialib');
    487                 } else {
    488                         var href = $('#wp-' + s.editor_id + '-media-buttons a.thickbox').attr('href') || '';
    489 
    490                         if ( href )
    491                                 tb_show('', href);
    492                 }
     485                if ( typeof wp !== 'undefined' && wp.media && wp.media.editor )
     486                        wp.media.editor.open(s.editor_id);
    493487        }
    494488
    495489        api.refresh_buttons = function( fade ) {
  • wp-includes/css/editor.css

     
    11481148        padding: 2px;
    11491149        position: absolute;
    11501150        display: none;
    1151         z-index: 999998;
     1151        z-index: 100000;
    11521152}
    11531153
    11541154#wp_editimgbtn,
  • wp-includes/css/media-views.css

     
    6868        left: 40px;
    6969        right: 40px;
    7070        bottom: 40px;
    71         z-index: 125000;
     71        z-index: 160000;
    7272}
    7373
    7474.media-modal-backdrop {
     
    7979        bottom: 0;
    8080        background: #000;
    8181        opacity: 0.8;
    82         z-index: 120000;
     82        z-index: 159900;
    8383}
    8484
    8585.media-modal-backdrop div {
  • wp-includes/js/media-editor.js

     
    471471                },
    472472
    473473                init: function() {
    474                         $(document.body).on('click', '.insert-media', function( event ) {
     474                        $(document.body).on( 'click', '.insert-media', function( event ) {
    475475                                var $this = $(this),
    476                                         editor = $this.data('editor'),
    477                                         workflow;
     476                                        editor = $this.data('editor');
    478477
    479478                                event.preventDefault();
    480479
     
    485484                                // See: http://core.trac.wordpress.org/ticket/22445
    486485                                $this.blur();
    487486
    488                                 if ( ! _.isString( editor ) )
    489                                         return;
     487                                wp.media.editor.open( editor );
     488                        });
     489                },
    490490
    491                                 workflow = wp.media.editor.get( editor );
     491                open: function( id ) {
     492                        var workflow;
    492493
    493                                 // If the workflow exists, just open it.
    494                                 if ( workflow ) {
    495                                         workflow.open();
    496                                         return;
    497                                 }
     494                        // If an empty `id` is provided, default to `wpActiveEditor`.
     495                        id = id || wpActiveEditor;
    498496
    499                                 // Initialize the editor's workflow if we haven't yet.
    500                                 wp.media.editor.add( editor );
    501                         });
     497                        // If that doesn't work, fall back to `tinymce.activeEditor`.
     498                        if ( ! id && typeof tinymce !== 'undefined' && tinymce.activeEditor )
     499                                id = id || tinymce.activeEditor.id;
     500
     501                        // Last but not least, fall back to the empty string.
     502                        id = id || '';
     503
     504                        workflow = wp.media.editor.get( id );
     505
     506                        // If the workflow exists, open it.
     507                        // Initialize the editor's workflow if we haven't yet.
     508                        if ( workflow )
     509                                workflow.open();
     510                        else
     511                                workflow = wp.media.editor.add( id );
     512
     513                        return workflow;
    502514                }
    503515        };
    504516
    505517        $( wp.media.editor.init );
    506 }(jQuery));
    507  No newline at end of file
     518}(jQuery));
  • wp-includes/js/tinymce/plugins/wordpress/editor_plugin_src.js

     
    6363                        });
    6464
    6565                        ed.addCommand('WP_Medialib', function() {
    66                                 var id = ed.getParam('wp_fullscreen_editor_id') || ed.getParam('fullscreen_editor_id') || ed.id,
    67                                         link = tinymce.DOM.select('#wp-' + id + '-media-buttons a.thickbox');
    68 
    69                                 if ( link && link[0] )
    70                                         link = link[0];
    71                                 else
    72                                         return;
    73 
    74                                 tb_show('', link.href);
     66                                if ( typeof wp !== 'undefined' && wp.media && wp.media.editor )
     67                                        wp.media.editor.open( ed.id );
    7568                        });
    7669
    7770                        // Register buttons