mirror of
https://github.com/aljazceru/CTFd.git
synced 2026-02-04 13:54:26 +01:00
Fix modal close buttons not working (#980)
* Fixes some modal close buttons not working in the admin panel
This commit is contained in:
@@ -37,7 +37,10 @@ $(function () {
|
||||
});
|
||||
|
||||
$("tr a, button").click(function (e) {
|
||||
e.stopPropagation();
|
||||
// TODO: This is a hack to allow modal close buttons to work
|
||||
if (!$(this).attr('data-dismiss')) {
|
||||
e.stopPropagation();
|
||||
}
|
||||
});
|
||||
|
||||
$('[data-toggle="tooltip"]').tooltip()
|
||||
|
||||
Reference in New Issue
Block a user