aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/bip
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2021-11-01 15:14:04 +0530
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2021-11-01 15:14:04 +0530
commit27ffda874e6808a7815ea7844355802afaad9599 (patch)
tree194011a66b86e3c603e964426c487813e62e943a /recipes/bip
parentUse PascalCasing for generated backend API class name (#759) (diff)
downloadferdium-recipes-27ffda874e6808a7815ea7844355802afaad9599.tar.gz
ferdium-recipes-27ffda874e6808a7815ea7844355802afaad9599.tar.zst
ferdium-recipes-27ffda874e6808a7815ea7844355802afaad9599.zip
chore: remove empty 'service.css' from recipes. Remove 'README.md' from the creation script
Diffstat (limited to 'recipes/bip')
-rw-r--r--recipes/bip/package.json2
-rw-r--r--recipes/bip/service.css1
-rw-r--r--recipes/bip/webview.js6
3 files changed, 1 insertions, 8 deletions
diff --git a/recipes/bip/package.json b/recipes/bip/package.json
index d42c72a..0ad1628 100644
--- a/recipes/bip/package.json
+++ b/recipes/bip/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "bip", 2 "id": "bip",
3 "name": "BiP", 3 "name": "BiP",
4 "version": "1.1.2", 4 "version": "1.1.3",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://web.bip.com/", 7 "serviceURL": "https://web.bip.com/",
diff --git a/recipes/bip/service.css b/recipes/bip/service.css
deleted file mode 100644
index 38dcab0..0000000
--- a/recipes/bip/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/bip/webview.js b/recipes/bip/webview.js
index f3166ce..8b9eccc 100644
--- a/recipes/bip/webview.js
+++ b/recipes/bip/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 const elements = document.querySelectorAll('.contact-list__message__unread-badge-counter'); 3 const elements = document.querySelectorAll('.contact-list__message__unread-badge-counter');
@@ -13,6 +9,4 @@ module.exports = Ferdi => {
13 }; 9 };
14 10
15 Ferdi.loop(getMessages); 11 Ferdi.loop(getMessages);
16
17 Ferdi.injectCSS(_path.default.join(__dirname, 'service.css'));
18}; 12};