Auto-focus the name field in the "Integration Details" modal.

This commit is contained in:
Pēteris Caune 2019-11-20 16:14:39 +02:00
parent 91c93b6a95
commit c54c70cab7
No known key found for this signature in database
GPG Key ID: E28D7679E9A9EDE2

View File

@ -26,6 +26,10 @@ $(function() {
return false;
});
$(".channel-modal").on('shown.bs.modal', function () {
$(".input-name", this).focus();
})
$('[data-toggle="tooltip"]').tooltip();
});