aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/pivotal-tracker/webview.js
blob: a550492a525c127c045306c68a1275e4e30595d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
module.exports = (Franz, options) => {

   function getMessages() {
	var bell = document.querySelectorAll("#view65 > span")[0];

	counter = parseInt(bell.innerText);

	Franz.setBadge(counter);
  };

  Franz.loop(getMessages);

}