mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 09:46:30 -05:00
61e092e8af
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
5 lines
192 B
JavaScript
5 lines
192 B
JavaScript
$(document).on('shown.bs.modal', function (event) {
|
|
$(event.target).attr('aria-hidden', 'false')
|
|
}).on('hidden.bs.modal', function (event) {
|
|
$(event.target).attr('aria-hidden', 'true')
|
|
})
|