summaryrefslogtreecommitdiffstats
path: root/wp-admin/js/media-upload.js
blob: b8c615d4116ebacb7f1eab1d2266768990ebf9b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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' && ( ed = tinyMCE.getInstanceById('content') ) && !ed.isHidden() ) {
		tinyMCE.selectedInstance.getWin().focus();
		tinyMCE.execCommand('mceInsertContent', false, h);
	} else
		win.edInsertContent(win.edCanvas, h);
}