Dialog: Partial fix for #3327: When opening a dialog, give focus to the first tabbable element inside the dialog.

This commit is contained in:
Scott González 2008-09-11 23:22:25 +00:00
parent bb84cbf7fd
commit 7e9dcd21de

View File

@ -290,6 +290,7 @@ $.widget("ui.dialog", {
}
}));
this.uiDialog.find(':tabbable:first').focus();
this._trigger('open', null, { options: this.options });
this._isOpen = true;
},