summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--package.json1
-rwxr-xr-xroutes.js2
-rwxr-xr-xviews/event.handlebars1
3 files changed, 2 insertions, 2 deletions
diff --git a/package.json b/package.json
index 82a3530..785a059 100644
--- a/package.json
+++ b/package.json
@@ -6,6 +6,7 @@
"scripts": {
"start": "nodemon ./start.js"
},
+ "engines": { "node" : ">=10.18.1" },
"keywords": [],
"author": "",
"license": "ISC",
diff --git a/routes.js b/routes.js
index d3b8c82..2b3c052 100755
--- a/routes.js
+++ b/routes.js
@@ -26,7 +26,7 @@ const request = require('request');
const domain = require('./config/domain.js').domain;
const contactEmail = require('./config/domain.js').email;
-const siteName = require('./config/domain.js').sitename
+const siteName = require('./config/domain.js').sitename;
const siteLogo = require('./config/domain.js').logo_url;
const ap = require('./activitypub.js');
diff --git a/views/event.handlebars b/views/event.handlebars
index 0b49808..6f9dae1 100755
--- a/views/event.handlebars
+++ b/views/event.handlebars
@@ -455,7 +455,6 @@
})
new ClipboardJS('#copyAPLink');
$("#copyAPLink").click(function(){
- console.log('hhhhh')
$(this).html('<i class="fas fa-copy"></i> Copied!');
setTimeout(function(){ $("#copyAPLink").html('<i class="fas fa-copy"></i> Copy');}, 5000);
})