mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
fixed boris caption
This commit is contained in:
parent
dac27ca9d8
commit
32a2a0567e
5 changed files with 17 additions and 3 deletions
|
@ -47,7 +47,11 @@ export const sagaMiddleware = createSagaMiddleware();
|
|||
export const history = createBrowserHistory();
|
||||
|
||||
history.listen(({ pathname }) => {
|
||||
console.log({ pathname });
|
||||
|
||||
if (pathname.match(/~([\wа-яА-Я]+)/)) {
|
||||
console.log('hi!', pathname.match(/~([\wа-яА-Я]+)/));
|
||||
|
||||
const [, username] = pathname.match(/~([\wа-яА-Я]+)/);
|
||||
window.postMessage({ type: 'username', username }, '*');
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue