I have a web app that receives push notifications from the web server. (via Juggernaut)
juggernautProcess: (msg) =>
json = JSON.parse(msg)
if json['notification']?
notification = json['notification']
@update_new_notification(notification)
initJuggernautHook: ->
Onethingaday.Public.subscribe("/channels/#{current_user.get('_id')}/notifications", @juggernautProcess)
However I believe the web app will stop receiving pushes after the laptop goes to sleep. I want to retrieved all the new notifications that were being pushed while the laptop was asleep once it wakes up. Is there an event I can call or listen to?