aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/cliq
diff options
context:
space:
mode:
authorLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-08-27 18:13:24 +0530
committerLibravatar GitHub <noreply@github.com>2021-08-27 18:13:24 +0530
commit155c4b832281348c16be1f4ef667e6e23dbf1bd8 (patch)
treed144e2de2e6c7fb2e334246e8a4aecdbeb08ef8d /recipes/cliq
parentdocs: fixed template file for creating recipe. (diff)
downloadferdium-recipes-155c4b832281348c16be1f4ef667e6e23dbf1bd8.tar.gz
ferdium-recipes-155c4b832281348c16be1f4ef667e6e23dbf1bd8.tar.zst
ferdium-recipes-155c4b832281348c16be1f4ef667e6e23dbf1bd8.zip
chore: normalized all recipes to ensure compatibility with es6 (#639)
- Removed some calls to set badge with '0' all the time. - Removed all 'sourceMaps' since they are all outdated atm.
Diffstat (limited to 'recipes/cliq')
-rw-r--r--recipes/cliq/index.js2
-rw-r--r--recipes/cliq/package.json2
-rw-r--r--recipes/cliq/webview.js6
3 files changed, 5 insertions, 5 deletions
diff --git a/recipes/cliq/index.js b/recipes/cliq/index.js
index 258da41..23607bd 100644
--- a/recipes/cliq/index.js
+++ b/recipes/cliq/index.js
@@ -1 +1 @@
module.exports = Franz => Franz; module.exports = Ferdi => Ferdi;
diff --git a/recipes/cliq/package.json b/recipes/cliq/package.json
index efc0c3f..ecb01f5 100644
--- a/recipes/cliq/package.json
+++ b/recipes/cliq/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "cliq", 2 "id": "cliq",
3 "name": "Cliq", 3 "name": "Cliq",
4 "version": "1.0.3", 4 "version": "1.1.0",
5 "repository": "https://github.com/cliqgeek/recipe-cliq", 5 "repository": "https://github.com/cliqgeek/recipe-cliq",
6 "config": { 6 "config": {
7 "serviceURL": "https://www.zoho.com/cliq/login.html", 7 "serviceURL": "https://www.zoho.com/cliq/login.html",
diff --git a/recipes/cliq/webview.js b/recipes/cliq/webview.js
index 095c1b0..067ea5b 100644
--- a/recipes/cliq/webview.js
+++ b/recipes/cliq/webview.js
@@ -1,7 +1,7 @@
1module.exports = Franz => { 1module.exports = Ferdi => {
2 const getMessages = () => { 2 const getMessages = () => {
3 Franz.setBadge(ConversationsList.getUnreadBadgeCount()); 3 Ferdi.setBadge(ConversationsList.getUnreadBadgeCount());
4 }; 4 };
5 5
6 Franz.loop(getMessages); 6 Ferdi.loop(getMessages);
7}; 7};