kpsul/bds/static/bds/js/bds.js
2020-08-28 18:23:20 +02:00

7 lines
No EOL
177 B
JavaScript

$(function () {
// Close notifications when delete button is pressed
$(".notification .delete").on("click", function () {
$(this).parent().remove();
});
});