From 464885e5bcc3b48ced0812b8f1dc388465237d57 Mon Sep 17 00:00:00 2001 From: Darius Kazemi Date: Fri, 17 Jan 2020 11:24:04 -0800 Subject: Adding Node version specification, fixup typos --- package.json | 1 + routes.js | 2 +- 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", 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(' Copied!'); setTimeout(function(){ $("#copyAPLink").html(' Copy');}, 5000); }) -- cgit v1.2.3