DEVELOPMENT ENVIRONMENT

~liljamo/felu

ref: 712c650d76f4607e50f58721b0a7fc050971cb75 felu/static/felu.js -rw-r--r-- 279 bytes
712c650dJonni Liljamo feat: first partial, for showing all users in the admin view 1 year, 1 month ago
                                                                                
1
2
3
4
5
6
7
8
9
document.body.addEventListener('htmx:beforeSwap', function(evt) {
	if (evt.detail.xhr.status === 400) {
		evt.detail.shouldSwap = true;
		evt.detail.isError = false;
	} else if (evt.detail.xhr.status === 401) {
		evt.detail.shouldSwap = true;
		evt.detail.isError = false;
	}
})