dwmkerr / angular-modal-service

Modal service for AngularJS - supports creating popups and modals via a service.
MIT License
626 stars 321 forks source link

When I open a modal through button click, then I hit enter it opens another modal #201

Closed warjohn123 closed 7 years ago

dwmkerr commented 7 years ago

This might be because you still have the original button element focused with the keyboard. This I believe is a bootstrap issue. I would suggest as a workaround you:

  1. Make sure the element you want to have initially focused has an id (such as #defaultFocus).
  2. On controller startup, use jQuery to find that element and focus is (such $('#defaultFocus).focus())