aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/basecamp
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/basecamp')
-rw-r--r--recipes/basecamp/index.js2
-rw-r--r--recipes/basecamp/package.json2
-rw-r--r--recipes/basecamp/webview.js6
3 files changed, 5 insertions, 5 deletions
diff --git a/recipes/basecamp/index.js b/recipes/basecamp/index.js
index 23607bd..dd41f72 100644
--- a/recipes/basecamp/index.js
+++ b/recipes/basecamp/index.js
@@ -1 +1 @@
module.exports = Ferdi => Ferdi; module.exports = Ferdium => Ferdium;
diff --git a/recipes/basecamp/package.json b/recipes/basecamp/package.json
index 1bea1af..391d338 100644
--- a/recipes/basecamp/package.json
+++ b/recipes/basecamp/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "basecamp", 2 "id": "basecamp",
3 "name": "Basecamp", 3 "name": "Basecamp",
4 "version": "1.1.1", 4 "version": "1.2.0",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://launchpad.37signals.com/" 7 "serviceURL": "https://launchpad.37signals.com/"
diff --git a/recipes/basecamp/webview.js b/recipes/basecamp/webview.js
index 9d8e677..7d13751 100644
--- a/recipes/basecamp/webview.js
+++ b/recipes/basecamp/webview.js
@@ -12,7 +12,7 @@ function hide(element) {
12 element.style.display = 'none'; 12 element.style.display = 'none';
13} 13}
14 14
15module.exports = Ferdi => { 15module.exports = Ferdium => {
16 const modal = document.createElement('div'); 16 const modal = document.createElement('div');
17 17
18 const waitFor = (condition, callback) => { 18 const waitFor = (condition, callback) => {
@@ -41,7 +41,7 @@ module.exports = Ferdi => {
41 } 41 }
42 } 42 }
43 43
44 // Replace window.alert to hide alerts in Ferdi 44 // Replace window.alert to hide alerts in Ferdium
45 const oldAlert = window.alert; 45 const oldAlert = window.alert;
46 window.alert = function () { 46 window.alert = function () {
47 // when Google Calendar displays an alert notify the user 47 // when Google Calendar displays an alert notify the user
@@ -67,5 +67,5 @@ module.exports = Ferdi => {
67 } 67 }
68 }); 68 });
69 69
70 Ferdi.injectCSS(_path.default.join(__dirname, 'css', 'modal.css')); 70 Ferdium.injectCSS(_path.default.join(__dirname, 'css', 'modal.css'));
71}; 71};