mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-04 11:24:49 -04:00
Implement SYWEB-58: Clicking a notification now takes you to that room.
This commit is contained in:
parent
2a44558fbd
commit
ed241ba032
2 changed files with 7 additions and 1 deletions
|
@ -238,6 +238,12 @@ function(matrixService, $rootScope, $q, $timeout, mPresence) {
|
|||
"body": message,
|
||||
"icon": member ? member.avatar_url : undefined
|
||||
});
|
||||
|
||||
notification.onclick = function() {
|
||||
console.log("notification.onclick() room=" + event.room_id);
|
||||
$rootScope.goToPage('room/' + (event.room_id));
|
||||
};
|
||||
|
||||
$timeout(function() {
|
||||
notification.close();
|
||||
}, 5 * 1000);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue