Don't try fancy tab focus if the WYSIWYG isn't active. Hat tip: skeltoac.

git-svn-id: https://develop.svn.wordpress.org/trunk@6601 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2008-01-12 01:55:51 +00:00
parent f9d48f276c
commit 93f3010e7f
1 changed files with 4 additions and 0 deletions

View File

@ -986,6 +986,8 @@ function the_editor($content, $id = 'content', $prev_id = 'title') {
// This code is meant to allow tabbing from Title to Post (TinyMCE).
if ( tinyMCE.isMSIE ) {
document.getElementById('<?php echo $prev_id; ?>').onkeydown = function (e) {
if ( tinyMCE.idCounter == 0 )
return true;
e = e ? e : window.event;
if (e.keyCode == 9 && !e.shiftKey && !e.controlKey && !e.altKey) {
var i = tinyMCE.getInstanceById('<?php echo $id; ?>');
@ -1000,6 +1002,8 @@ function the_editor($content, $id = 'content', $prev_id = 'title') {
}
} else {
document.getElementById('<?php echo $prev_id; ?>').onkeypress = function (e) {
if ( tinyMCE.idCounter == 0 )
return true;
e = e ? e : window.event;
if (e.keyCode == 9 && !e.shiftKey && !e.controlKey && !e.altKey) {
var i = tinyMCE.getInstanceById('<?php echo $id; ?>');