diff options
-rw-r--r-- | package.json | 1 | ||||
-rwxr-xr-x | routes.js | 2 | ||||
-rwxr-xr-x | views/event.handlebars | 1 |
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", @@ -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); }) |