mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 01:39:37 +01:00
3388050bf9
git-svn-id: http://svn.automattic.com/wordpress/trunk@6579 1a063a9b-81f0-0310-95a4-ce76da25c4cd
12 lines
407 B
JavaScript
12 lines
407 B
JavaScript
// send html to the post editor
|
|
function send_to_editor(h) {
|
|
var win = window.opener ? window.opener : window.dialogArguments;
|
|
if ( !win )
|
|
win = top;
|
|
tinyMCE = win.tinyMCE;
|
|
if ( typeof tinyMCE != 'undefined' && tinyMCE.getInstanceById('content') ) {
|
|
tinyMCE.selectedInstance.getWin().focus();
|
|
tinyMCE.execCommand('mceInsertContent', false, h);
|
|
} else
|
|
win.edInsertContent(win.edCanvas, h);
|
|
}
|