aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/zoho/webview-unsafe.js
blob: eb8359542023bb3698bebdb6c29d533a942e2ec9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
//wait for Ferdium and Zoho Mail to initialize
if (
    Object.prototype.hasOwnProperty.call(window, "ferdium") &&
    Object.prototype.hasOwnProperty.call(window.ferdium, "setBadge") &&
    Object.prototype.hasOwnProperty.call(window, "zmNCenter") &&
    Object.prototype.hasOwnProperty.call(window, "zmfolAction")
) {
    var unreadNotifications = window.zmNCenter.counter.count(); //General Notifications by Zoho (Bell Icon)
    var unreadMail = window.zmfolAction.getUnreadViewCount(); //Unread messages count

    window.ferdium.setBadge(unreadMail, unreadNotifications);
}