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 ab764c9bf4
commit cc13b97c4e

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();
}
/**