forked from DGNum/gestioCOF
7 lines
No EOL
177 B
JavaScript
7 lines
No EOL
177 B
JavaScript
$(function () {
|
|
// Close notifications when delete button is pressed
|
|
$(".notification .delete").on("click", function () {
|
|
$(this).parent().remove();
|
|
});
|
|
|
|
}); |