Make toasts eckig again!

This commit is contained in:
Patrick Jentsch 2020-01-08 10:16:49 +01:00
parent 5aa4fcd66f
commit 6d65521000

View File

@ -193,7 +193,7 @@
} }
} }
{% for message in get_flashed_messages() %} {% for message in get_flashed_messages() %}
M.toast({"classes": "rounded", "html": '<span>{{ message }}</span><button class="btn-flat toast-action red-text" data-action="close"><i class="material-icons">close</i></button>'}); M.toast({"html": '<span>{{ message }}</span><button class="btn-flat toast-action red-text" data-action="close"><i class="material-icons">close</i></button>'});
{% endfor %} {% endfor %}
for (toastActionElement of document.querySelectorAll(".toast-action[data-action='close']")) { for (toastActionElement of document.querySelectorAll(".toast-action[data-action='close']")) {
toastActionElement.addEventListener("click", function(event) { toastActionElement.addEventListener("click", function(event) {