Changeset 6601
- Timestamp:
- 01/12/08 01:55:51 (8 months ago)
- Files:
-
- trunk/wp-includes/general-template.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-includes/general-template.php
r6567 r6601 987 987 if ( tinyMCE.isMSIE ) { 988 988 document.getElementById('<?php echo $prev_id; ?>').onkeydown = function (e) { 989 if ( tinyMCE.idCounter == 0 ) 990 return true; 989 991 e = e ? e : window.event; 990 992 if (e.keyCode == 9 && !e.shiftKey && !e.controlKey && !e.altKey) { … … 1001 1003 } else { 1002 1004 document.getElementById('<?php echo $prev_id; ?>').onkeypress = function (e) { 1005 if ( tinyMCE.idCounter == 0 ) 1006 return true; 1003 1007 e = e ? e : window.event; 1004 1008 if (e.keyCode == 9 && !e.shiftKey && !e.controlKey && !e.altKey) {
