Changeset 6601
- Timestamp:
- 01/12/2008 01:55:51 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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) {
Note: See TracChangeset
for help on using the changeset viewer.