aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/teamleader
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/teamleader
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/teamleader')
-rw-r--r--recipes/teamleader/index.js2
-rw-r--r--recipes/teamleader/package.json2
-rw-r--r--recipes/teamleader/webview.js13
3 files changed, 9 insertions, 8 deletions
diff --git a/recipes/teamleader/index.js b/recipes/teamleader/index.js
index 258da41..23607bd 100644
--- a/recipes/teamleader/index.js
+++ b/recipes/teamleader/index.js
@@ -1 +1 @@
module.exports = Franz => Franz; module.exports = Ferdi => Ferdi;
diff --git a/recipes/teamleader/package.json b/recipes/teamleader/package.json
index 08b7e2a..332f28f 100644
--- a/recipes/teamleader/package.json
+++ b/recipes/teamleader/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "teamleader", 2 "id": "teamleader",
3 "name": "teamleader", 3 "name": "teamleader",
4 "version": "1.0.2", 4 "version": "1.1.0",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://app.teamleader.eu/?gotologin", 7 "serviceURL": "https://app.teamleader.eu/?gotologin",
diff --git a/recipes/teamleader/webview.js b/recipes/teamleader/webview.js
index 2de8e1c..3041463 100644
--- a/recipes/teamleader/webview.js
+++ b/recipes/teamleader/webview.js
@@ -1,13 +1,14 @@
1const path = require('path'); 1const _path = _interopRequireDefault(require('path'));
2 2
3module.exports = (Franz, options) => { 3function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
4
5module.exports = (Ferdi) => {
4 const getMessages = () => { 6 const getMessages = () => {
5 const unreadNotifications = parseInt(document.getElementById('notifications_amount').innerHTML); 7 const unreadNotifications = parseInt(document.getElementById('notifications_amount').innerHTML);
6 8 Ferdi.setBadge(unreadNotifications);
7 Franz.setBadge(unreadNotifications);
8 }; 9 };
9 10
10 Franz.loop(getMessages); 11 Ferdi.loop(getMessages);
11 12
12 Franz.injectCSS(path.join(__dirname, 'css', 'franz.css')); 13 Ferdi.injectCSS(_path.default.join(__dirname, 'css', 'franz.css'));
13}; 14};