update user waiting notification to show meeting name

This commit is contained in:
Zachary Chai
2017-02-28 16:43:54 -05:00
parent 7bb1340fef
commit 03cae1ed19
4 changed files with 7 additions and 8 deletions

View File

@ -52,7 +52,7 @@
// show a browser notification only to the owner
if (isRoomOwner()) {
showNotification(I18n.user_waiting_title, {
body: I18n.user_waiting_body.replace(/%{user}/, data.user)
body: I18n.user_waiting_body.replace(/%{user}/, data.user).replace(/%{meeting}/, '"'+data.meeting_name+'"')
});
}
}