PluginProbe
Disk Usage Insights / 1.6
Disk Usage Insights v1.6
trunk 1.0 1.10 1.11 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9
disk-usage-insights / res / js / htmx-custom-error-handler.js

htmx-custom-error-handler.js in Disk Usage Insights 1.6, at res/js/htmx-custom-error-handler.js

10 lines 343 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 htmx.on('htmx:responseError', function (evt) {
2 // 403=Forbidden
3 console.log(evt.detail.xhr.response);
4 console.log(evt.detail.xhr.responseText);
5 alert('Received error from server (code=' + evt.detail.xhr.status + ') - see console');
6 });
7 htmx.on('htmx:sendError', function (evt) {
8 alert('Could not send data to server');
9 });
10