5 lines
141 B
JavaScript
5 lines
141 B
JavaScript
window.onbeforeunload = function() {
|
|
// Prevent the stable diffusion window from being closed by mistake
|
|
return "Are you sure ?";
|
|
};
|