]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/js/media-upload.dev.js
Wordpress 3.0.5
[autoinstalls/wordpress.git] / wp-admin / js / media-upload.dev.js
1 // send html to the post editor
2 function send_to_editor(h) {
3         var ed;
4
5         if ( typeof tinyMCE != 'undefined' && ( ed = tinyMCE.activeEditor ) && !ed.isHidden() ) {
6                 ed.focus();
7                 if ( tinymce.isIE )
8                         ed.selection.moveToBookmark(tinymce.EditorManager.activeEditor.windowManager.bookmark);
9
10                 if ( h.indexOf('[caption') === 0 ) {
11                         if ( ed.plugins.wpeditimage )
12                                 h = ed.plugins.wpeditimage._do_shcode(h);
13                 } else if ( h.indexOf('[gallery') === 0 ) {
14                         if ( ed.plugins.wpgallery )
15                                 h = ed.plugins.wpgallery._do_gallery(h);
16                 } else if ( h.indexOf('[embed') === 0 ) {
17                         if ( ed.plugins.wordpress )
18                                 h = ed.plugins.wordpress._setEmbed(h);
19                 }
20
21                 ed.execCommand('mceInsertContent', false, h);
22
23         } else if ( typeof edInsertContent == 'function' ) {
24                 edInsertContent(edCanvas, h);
25         } else {
26                 jQuery( edCanvas ).val( jQuery( edCanvas ).val() + h );
27         }
28
29         tb_remove();
30 }
31
32 // thickbox settings
33 var tb_position;
34 (function($) {
35         tb_position = function() {
36                 var tbWindow = $('#TB_window'), width = $(window).width(), H = $(window).height(), W = ( 720 < width ) ? 720 : width;
37
38                 if ( tbWindow.size() ) {
39                         tbWindow.width( W - 50 ).height( H - 45 );
40                         $('#TB_iframeContent').width( W - 50 ).height( H - 75 );
41                         tbWindow.css({'margin-left': '-' + parseInt((( W - 50 ) / 2),10) + 'px'});
42                         if ( typeof document.body.style.maxWidth != 'undefined' )
43                                 tbWindow.css({'top':'20px','margin-top':'0'});
44                 };
45
46                 return $('a.thickbox').each( function() {
47                         var href = $(this).attr('href');
48                         if ( ! href ) return;
49                         href = href.replace(/&width=[0-9]+/g, '');
50                         href = href.replace(/&height=[0-9]+/g, '');
51                         $(this).attr( 'href', href + '&width=' + ( W - 80 ) + '&height=' + ( H - 85 ) );
52                 });
53         };
54
55         $(window).resize(function(){ tb_position(); });
56
57 })(jQuery);
58
59 jQuery(document).ready(function($){
60         $('a.thickbox').click(function(){
61                 if ( typeof tinyMCE != 'undefined' && tinyMCE.activeEditor ) {
62                         tinyMCE.get('content').focus();
63                         tinyMCE.activeEditor.windowManager.bookmark = tinyMCE.activeEditor.selection.getBookmark('simple');
64                 }
65         });
66 });