Index: trunk/extensions/UsabilityInitiative/EditToolbar/EditToolbar.js |
— | — | @@ -60,6 +60,7 @@ |
61 | 61 | .attr( { 'href': '#', 'rel': section, 'class': current ? 'current' : null } ) |
62 | 62 | .data( 'sectionDiv', sectionDiv ) |
63 | 63 | .data( 'sectionCookie', sectionCookie ) |
| 64 | + .data( 'textbox', textbox ) |
64 | 65 | .click( function() { |
65 | 66 | $(this).blur(); |
66 | 67 | var show = ( $(this).data( 'sectionDiv' ).css( 'display' ) == 'none' ); |
— | — | @@ -74,6 +75,7 @@ |
75 | 76 | $(this).data( 'sectionCookie' ), |
76 | 77 | show ? $(this).data( 'sectionDiv' ).attr( 'id' ) : null |
77 | 78 | ); |
| 79 | + $(this).data( 'textbox' ).focus(); |
78 | 80 | return false; |
79 | 81 | }) |
80 | 82 | ) |