By Christian van Laarhoven on Friday, 24 March 2017
Posted in General
Replies 1
Likes 0
Views 119
Votes 0
Hi,

I want to have a notification on screen when users unlock a new badge as displayed in the attachment. Is this possible?
Hello Christian,

I believe you want this to popup as soon as the user earned a badge, am I correct? Unfortunately this isn't possible out of the box but if you have some javascript knowledge, you could hook into the event "notifier.updates" on the window to detect for new notifications.

Example:

[gist]
$(window).on('notifier.updates', function(event, data) {
console.log(data);
});
[/gist]
·
Friday, 24 March 2017 23:58
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post