mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-06-11 07:44:12 +02:00
Refine browser back button implementation using hash-based approach
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
This commit is contained in:
@@ -106,6 +106,11 @@ export async function common(createVue: () => Promise<App<Element>>) {
|
||||
window.history.replaceState(null, '', window.location.href.replace('#pswp', ''));
|
||||
}
|
||||
|
||||
// URLに#folder-を含む場合は取り除く(FolderPageView用)
|
||||
if (window.location.hash.startsWith('#folder-')) {
|
||||
window.history.replaceState(null, '', window.location.href.replace(window.location.hash, ''));
|
||||
}
|
||||
|
||||
// 一斉リロード
|
||||
reloadChannel.addEventListener('message', path => {
|
||||
if (path !== null) window.location.href = path;
|
||||
|
||||
Reference in New Issue
Block a user