Fix modal close buttons not working (#980)

* Fixes some modal close buttons not working in the admin panel
This commit is contained in:
Kevin Chung
2019-05-04 15:47:42 -04:00
committed by GitHub
parent d2f8b4090d
commit dc4db6ff1f

View File

@@ -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()