Browse Source

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

pull/307/head
Pēteris Caune 5 years ago
parent
commit
c54c70cab7
No known key found for this signature in database GPG Key ID: E28D7679E9A9EDE2
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      static/js/channels.js

+ 4
- 0
static/js/channels.js View File

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

Loading…
Cancel
Save