Вход Регистрация
Файл: wordpress/wp-admin/js/media-upload.js
Строк: 74
<?php
/* global tinymce, QTags */
// send html to the post editor

var wpActiveEditorsend_to_editor;

send_to_editor = function( html ) {
    var 
editor,
        
hasTinymce typeof tinymce !== 'undefined',
        
hasQuicktags typeof QTags !== 'undefined';

    if ( ! 
wpActiveEditor ) {
        if ( 
hasTinymce && tinymce.activeEditor ) {
            
editor tinymce.activeEditor;
            
wpActiveEditor editor.id;
        } else if ( ! 
hasQuicktags ) {
            return 
false;
        }
    } else if ( 
hasTinymce ) {
        
editor tinymce.getwpActiveEditor );
    }

    if ( 
editor && ! editor.isHidden() ) {
        
editor.execCommand'mceInsertContent'falsehtml );
    } else if ( 
hasQuicktags ) {
        
QTags.insertContenthtml );
    } else {
        
document.getElementByIdwpActiveEditor ).value += html;
    }

    
// If the old thickbox remove function exists, call it
    
if ( window.tb_remove ) {
        try { 
window.tb_remove(); } catch( ) {}
    }
};

// thickbox settings
var tb_position;
(function($) {
    
tb_position = function() {
        var 
tbWindow = $('#TB_window'),
            
width = $(window).width(),
            
= $(window).height(),
            
= ( 833 width ) ? 833 width,
            
adminbar_height 0;

        if ( $(
'#wpadminbar').length ) {
            
adminbar_height parseInt( $('#wpadminbar').css('height'), 10 );
        }

        if ( 
tbWindow.size() ) {
            
tbWindow.width50 ).height45 adminbar_height );
            $(
'#TB_iframeContent').width50 ).height75 adminbar_height );
            
tbWindow.css({'margin-left''-' parseInt( ( ( 50 ) / ), 10 ) + 'px'});
            if ( 
typeof document.body.style.maxWidth !== 'undefined' )
                
tbWindow.css({'top'20 adminbar_height 'px''margin-top''0'});
        }

        return $(
'a.thickbox').each( function() {
            var 
href = $(this).attr('href');
            if ( ! 
href ) return;
            
href href.replace(/&width=[0-9]+/g'');
            
href href.replace(/&height=[0-9]+/g'');
            $(
this).attr'href'href '&width=' + ( 80 ) + '&height=' + ( 85 adminbar_height ) );
        });
    };

    $(
window).resize(function(){ tb_position(); });

})(
jQuery);
?>
Онлайн: 1
Реклама