Skip to content

Commit

Permalink
Fix overflow in modal
Browse files Browse the repository at this point in the history
  • Loading branch information
Quy committed Mar 27, 2020
1 parent 5d07e26 commit de80493
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/media_source/legacy/js/bootstrap-init.es5.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ Joomla = window.Joomla || {};
}
// @TODO throw the standard Joomla event
}).on('hide.bs.modal', function() {
$('.modal-body').css({'max-height': 'initial', 'overflow-y': 'initial'});
$('.modal-body').css({'max-height': 'initial'});
$('.modalTooltip').tooltip('dispose');
// @TODO throw the standard Joomla event
}).on('hidden.bs.modal', function() {
Expand Down

0 comments on commit de80493

Please sign in to comment.