feat: prevent easy reloading

typescript_changes
flop 3 weeks ago
parent 958ebdf4f0
commit 71ade5290a
  1. 4
      ts/src/browser.ts

@ -793,4 +793,8 @@ m.mount(document.getElementById("sec-meta")!, MetaPanel);
// Expose globals referenced by topbar inline handlers
Object.assign(window, { loadBin, exportBin, addSection, cycleTheme });
window.addEventListener("beforeunload", (e) => {
if (isDirty) e.preventDefault();
});
triggerPreview();

Loading…
Cancel
Save