Browse Source

auto-focus input elements in Account Settings modal dialogs.

pull/140/head
Pēteris Caune 7 years ago
parent
commit
888d7a1f9c
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      static/js/profile.js

+ 8
- 0
static/js/profile.js View File

@ -10,4 +10,12 @@ $(function() {
return false;
});
$('#invite-team-member-modal').on('shown.bs.modal', function () {
$('#itm-email').focus();
})
$('#set-team-name-modal').on('shown.bs.modal', function () {
$('#team-name').focus();
})
});

Loading…
Cancel
Save