From dc4db6ff1f7e5724000c450852b491cf6d2af9bd Mon Sep 17 00:00:00 2001 From: Kevin Chung Date: Sat, 4 May 2019 15:47:42 -0400 Subject: [PATCH] Fix modal close buttons not working (#980) * Fixes some modal close buttons not working in the admin panel --- CTFd/themes/admin/static/js/style.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CTFd/themes/admin/static/js/style.js b/CTFd/themes/admin/static/js/style.js index 2ca31dcb..f453d301 100644 --- a/CTFd/themes/admin/static/js/style.js +++ b/CTFd/themes/admin/static/js/style.js @@ -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()