aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/scrumpy/webview.js
blob: b53404b4202be21813198fd7a7dbadaccf4456ab (plain) (blame)
1
2
3
4
5
6
7
8
module.exports = Ferdi => {
	const getMessages = function getMessages() {
		const notifications = document.querySelector('.c-notifications-dropdown__count')
		Ferdi.setBadge(notifications.innerText);
	};

	Ferdi.loop(getMessages);
};