Нужно добавить класс кнопке при открытии модального окна и удалить класс после закрытия. Можно ли назначить обработчик закрытия окна внутри обработчика открытия? Код ниже работает, но насколько он верный?
$('#gp-advantages_01-modal').on('show.bs.modal', function (event) {
var button = $(event.relatedTarget) // Button that triggered the modal
button.addClass('active')
var textModal = button.data('text-modal')
var titleModal = button.data('title-modal') // Extract info from data-* attributes
// If necessary, you could initiate an AJAX request here (and then do the updating in a callback).
// Update the modal's content. We'll use jQuery here, but you could use a data binding library or other methods instead.
var modal = $(this)
modal.find('.modal-title').text(titleModal)
modal.find('.modal-body').text(textModal)
$('#gp-advantages_01-modal').on('hidden.bs.modal', function (e) {
button.removeClass('active')
})
})