Merge pull request #3102 from Hypolite/feature/3101-modal-auto-focus
Feature 3101 modal auto focus
This commit is contained in:
commit
6ff0cfb315
1 changed files with 9 additions and 4 deletions
|
@ -397,6 +397,11 @@
|
|||
var modal = $('#jot-modal').modal();
|
||||
jotcache = $("#jot-sections");
|
||||
|
||||
// Auto focus on the first enabled field in the modal
|
||||
modal.on('shown.bs.modal', function (e) {
|
||||
$('#jot-modal-content').find('select:not([disabled]), input:not([type=hidden]):not([disabled]), textarea:not([disabled])').first().focus();
|
||||
})
|
||||
|
||||
modal
|
||||
.find('#jot-modal-content')
|
||||
.append(jotcache)
|
||||
|
|
Loading…
Reference in a new issue