Forked from Ana Tudor's Pen trapezoids with gradient backgrounds.
A Pen by Claudio Procida on CodePen.
(function poll_notifications() { | |
var dfd = dojo.xhrGet({ | |
url : '/connections/opensocial/basic/rest/activitystreams/@me/@actions', | |
handleAs : 'json' | |
}); | |
dfd.addCallback(function(response, ioargs) { | |
var count = response.totalResults + response.connections.unreadMentions + response.connections.unreadNotifications; | |
console.log(count); | |
setTimeout(poll_notifications, 30000); | |
}); |
Forked from Ana Tudor's Pen trapezoids with gradient backgrounds.
A Pen by Claudio Procida on CodePen.