| 1 |
document.getElementById('new-collection-form').addEventListener('htmx:after:request', function(evt) { |
| 2 |
var status = evt.detail.ctx.response ? evt.detail.ctx.response.status : 0; |
| 3 |
if (status >= 200 && status < 300) { |
| 4 |
|
| 5 |
|
| 6 |
|
| 7 |
htmx.ajax('GET', '/library/tabs/collections', { target: '#library-collections', swap: 'innerHTML' }); |
| 8 |
} |
| 9 |
}); |
| 10 |
|