Summernote: set focus after initialization
$('.summernote').summernote('focus')
ps. i want to find an angular way out .. and it works
After coming back to this problem and trying a lot of solutions, I came to one that works:
$('.note-editable').trigger('focus');
Triggering the event through jQuery works, but using the focus()
function doesn't.