aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/fleep
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/fleep')
-rw-r--r--recipes/fleep/package.json2
-rw-r--r--recipes/fleep/service.css1
-rw-r--r--recipes/fleep/webview.js6
3 files changed, 1 insertions, 8 deletions
diff --git a/recipes/fleep/package.json b/recipes/fleep/package.json
index a03d7a4..1781341 100644
--- a/recipes/fleep/package.json
+++ b/recipes/fleep/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "fleep", 2 "id": "fleep",
3 "name": "Fleep", 3 "name": "Fleep",
4 "version": "1.1.1", 4 "version": "1.1.2",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://fleep.io/chat" 7 "serviceURL": "https://fleep.io/chat"
diff --git a/recipes/fleep/service.css b/recipes/fleep/service.css
deleted file mode 100644
index 38dcab0..0000000
--- a/recipes/fleep/service.css
+++ /dev/null
@@ -1 +0,0 @@
1/* Insert custom styles you want to insert here */ \ No newline at end of file
diff --git a/recipes/fleep/webview.js b/recipes/fleep/webview.js
index 85b5365..eaefbd1 100644
--- a/recipes/fleep/webview.js
+++ b/recipes/fleep/webview.js
@@ -1,7 +1,3 @@
1const _path = _interopRequireDefault(require('path'));
2
3function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
4
5module.exports = Ferdi => { 1module.exports = Ferdi => {
6 const getMessages = () => { 2 const getMessages = () => {
7 // Count number of conversations or teams with unread messages 3 // Count number of conversations or teams with unread messages
@@ -10,6 +6,4 @@ module.exports = Ferdi => {
10 }; 6 };
11 7
12 Ferdi.loop(getMessages); 8 Ferdi.loop(getMessages);
13
14 Ferdi.injectCSS(_path.default.join(__dirname, 'service.css'));
15}; 9};