aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/hangouts/webview.js
blob: 41fced1d47db23b8a7a0e3082303cfb997078601 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module.exports = Ferdi => {
  const getMessages = function getMessages() {
    // get unread messages
    const count = document.querySelector('#hangout-landing-chat iframe').contentWindow.document.querySelectorAll('.ee').length;

    // set Ferdi badge
    Ferdi.setBadge(count);
  };

  Ferdi.loop(getMessages);
};