shufang.org/js/app.js

10 lines
243 B
JavaScript

// JS Goes here - ES6 supported
if (window.netlifyIdentity) {
window.netlifyIdentity.on("init", (user) => {
if (!user) {
window.netlifyIdentity.on("login", () => {
document.location.href = "/admin/";
});
}
});
}