Skip to content

Commit a458ff8

Browse files
committed
Grid: Move focus back to grid. Makes sense, and fixes the tooltip issue.
1 parent 6c33b01 commit a458ff8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

grid-editing/grid.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@
7272
var editForm = $( "#editForm" ).tooltip().hide().submit( function( event ) {
7373
event.preventDefault();
7474
$.observable( developer ).property( serializeForm( this ) );
75-
// TODO make the tooltip disappear when hiding the form
7675
editForm.hide();
76+
grid.focus();
7777
});
7878
grid.delegate( "button.edit", "click", function() {
7979
developer = $( this ).closest("tr").data( "grid-item" );

0 commit comments

Comments
 (0)