slidewalk/web/assets/vendor/live-reload.js
2026-07-15 20:14:07 +02:00

12 lines
205 B
JavaScript

(function () {
"use strict";
if (typeof EventSource === "undefined") {
return;
}
var source = new EventSource("/events");
source.onmessage = function () {
location.reload();
};
})();