mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
JS, Repost: Notification instead of dialog after reposting
This commit is contained in:
parent
ffb8c6d5df
commit
cb8038590c
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ function repostPost(id, hash) {
|
||||||
MessageBox("Помилка", "Не удалось поделиться записью...", ["OK"], [Function.noop]);
|
MessageBox("Помилка", "Не удалось поделиться записью...", ["OK"], [Function.noop]);
|
||||||
else {
|
else {
|
||||||
let jsonR = JSON.parse(xhr.responseText);
|
let jsonR = JSON.parse(xhr.responseText);
|
||||||
MessageBox("Успешно", "Запись появится на вашей стене. <a href='wall" + jsonR.wall_owner + "'>Перейти на свою стену.</a>", ["OK"], [Function.noop]);
|
NewNotification("Успешно поделились", "Запись появится на вашей стене. Нажмите на уведомление, чтобы перейти к своей стене.", null, () => {window.location.href = "/wall" + jsonR.wall_owner});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
xhr.send('text=' + encodeURI(text));
|
xhr.send('text=' + encodeURI(text));
|
||||||
|
|
Loading…
Reference in a new issue