aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/devRant
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/devRant')
-rw-r--r--recipes/devRant/package.json2
-rw-r--r--recipes/devRant/webview.js5
2 files changed, 4 insertions, 3 deletions
diff --git a/recipes/devRant/package.json b/recipes/devRant/package.json
index edb0c40..e1b65ff 100644
--- a/recipes/devRant/package.json
+++ b/recipes/devRant/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "devRant", 2 "id": "devRant",
3 "name": "devRant", 3 "name": "devRant",
4 "version": "1.1.0", 4 "version": "1.2.0",
5 "license": "MIT", 5 "license": "MIT",
6 "repository": "https://github.com/emamut/recipe-devrant", 6 "repository": "https://github.com/emamut/recipe-devrant",
7 "config": { 7 "config": {
diff --git a/recipes/devRant/webview.js b/recipes/devRant/webview.js
index efe0d71..1a5cbb8 100644
--- a/recipes/devRant/webview.js
+++ b/recipes/devRant/webview.js
@@ -1,9 +1,9 @@
1const _path = _interopRequireDefault(require('path'));
2
3function _interopRequireDefault(obj) { 1function _interopRequireDefault(obj) {
4 return obj && obj.__esModule ? obj : { default: obj }; 2 return obj && obj.__esModule ? obj : { default: obj };
5} 3}
6 4
5const _path = _interopRequireDefault(require('path'));
6
7setTimeout(() => { 7setTimeout(() => {
8 const elem = document.querySelector('.landing-title.version-title'); 8 const elem = document.querySelector('.landing-title.version-title');
9 if ( 9 if (
@@ -45,5 +45,6 @@ module.exports = (Ferdium, settings) => {
45 }); 45 });
46 46
47 Ferdium.loop(getMessages); 47 Ferdium.loop(getMessages);
48
48 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css')); 49 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
49}; 50};