aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/pulsesms/webview.js
blob: a4c7f43ca9c7a0c7aa5ba01ebea580367589c5b5 (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);
};