From 3c47f9a2876d2cce65e031f4f569554848c65013 Mon Sep 17 00:00:00 2001 From: langdon Date: Sat, 23 Jul 2022 23:41:29 -0400 Subject: adding a recipe for 'tick' (https://tickspot.com) (#132) --- recipes/tick/icon.svg | 6 ++++++ recipes/tick/index.js | 1 + recipes/tick/package.json | 9 +++++++++ recipes/tick/webview.js | 11 +++++++++++ 4 files changed, 27 insertions(+) create mode 100644 recipes/tick/icon.svg create mode 100644 recipes/tick/index.js create mode 100644 recipes/tick/package.json create mode 100644 recipes/tick/webview.js (limited to 'recipes') diff --git a/recipes/tick/icon.svg b/recipes/tick/icon.svg new file mode 100644 index 0000000..ccb7f46 --- /dev/null +++ b/recipes/tick/icon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/recipes/tick/index.js b/recipes/tick/index.js new file mode 100644 index 0000000..dd41f72 --- /dev/null +++ b/recipes/tick/index.js @@ -0,0 +1 @@ +module.exports = Ferdium => Ferdium; diff --git a/recipes/tick/package.json b/recipes/tick/package.json new file mode 100644 index 0000000..2c1356f --- /dev/null +++ b/recipes/tick/package.json @@ -0,0 +1,9 @@ +{ + "id": "tick", + "name": "tick", + "version": "1.0.0", + "license": "MIT", + "config": { + "serviceURL": "http://app.tickspot.com/" + } +} diff --git a/recipes/tick/webview.js b/recipes/tick/webview.js new file mode 100644 index 0000000..8101672 --- /dev/null +++ b/recipes/tick/webview.js @@ -0,0 +1,11 @@ +const _path = _interopRequireDefault(require('path')); + +function _interopRequireDefault(obj) { + return obj && obj.__esModule ? obj : { default: obj }; +} + +module.exports = Ferdium => { + // TODO: not sure what "notify" would be useful for this app + + Ferdium.injectCSS(_path.default.join(__dirname, 'service.css')); +}; -- cgit v1.2.3-54-g00ecf