aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/pulsesms/webview.js
blob: 2e6b46d2e0a2883e06a566887e64b877bb435a26 (plain) (blame)
1
2
3
4
5
6
7
8
module.exports = (Franz) => {
  function getMessages() {
    Franz.setBadge(document.querySelector('#unread_count').innerHTML.replace(/\s/g, ''));
  }

  // check for new messages every second and update Franz badge
  Franz.loop(getMessages);
};