added bubble popping

This commit is contained in:
Corban-Lee 2023-05-18 15:21:55 +01:00
parent e604687add
commit 9169541bae

View File

@ -24,8 +24,13 @@
{% block scripts %}
<script type="text/javascript">
$(document).ready(function() {
$("#pageHeader").hide();
$(".bubble").each(function() {
$(this).on("click", function() {
$(this).remove();
});
});
})
</script>
{% endblock scripts %}