Browse Source
Auto-focus the name field in the "Integration Details" modal.
pull/307/head
Pēteris Caune
5 years ago
No known key found for this signature in database
GPG Key ID: E28D7679E9A9EDE2
1 changed files with
4 additions and
0 deletions
-
static/js/channels.js
|
|
@ -26,6 +26,10 @@ $(function() { |
|
|
|
return false; |
|
|
|
}); |
|
|
|
|
|
|
|
$(".channel-modal").on('shown.bs.modal', function () { |
|
|
|
$(".input-name", this).focus(); |
|
|
|
}) |
|
|
|
|
|
|
|
$('[data-toggle="tooltip"]').tooltip(); |
|
|
|
|
|
|
|
}); |