Focus on the first input too, in case it's not a text field

This commit is contained in:
Toby Zerner 2015-08-05 16:07:43 +09:30
parent ca8fee4685
commit 5005e37cfb

View File

@ -89,7 +89,7 @@ export default class Modal extends Component {
* Focus on the first input when the modal is ready to be used.
*/
onready() {
this.$('form :input:first').select();
this.$('form :input:first').focus().select();
}
/**