send_to_editor fix for FF. Props azaozz. fixes #6864 for trunk

git-svn-id: http://svn.automattic.com/wordpress/trunk@7860 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-04-30 20:12:39 +00:00
parent 0f13be9815
commit 96cdf5c7a7
1 changed files with 2 additions and 3 deletions

View File

@ -1,8 +1,7 @@
// send html to the post editor
function send_to_editor(h) {
var win = window.opener ? window.opener : window.dialogArguments;
if ( !win )
win = top;
var win = window.dialogArguments || opener || parent || top;
tinyMCE = win.tinyMCE;
if ( typeof tinyMCE != 'undefined' && ( ed = tinyMCE.getInstanceById('content') ) && !ed.isHidden() ) {
tinyMCE.selectedInstance.getWin().focus();