mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-16 14:17:00 +08:00
7 lines
No EOL
168 B
JavaScript
7 lines
No EOL
168 B
JavaScript
function handleTurbolinks(app) {
|
|
document.addEventListener('turbolinks:before-cache', () => {
|
|
app.unmount();
|
|
}, { once: true });
|
|
}
|
|
|
|
export { handleTurbolinks }; |