aboutsummaryrefslogtreecommitdiffstats
path: root/src/js/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/js/app.js')
-rw-r--r--src/js/app.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/js/app.js b/src/js/app.js
index 48e3725..df6eff4 100644
--- a/src/js/app.js
+++ b/src/js/app.js
@@ -5,6 +5,7 @@ import {
currentLocale,
supportedLanguages,
} from './i18n/i18n';
+import { createAckeeInstance, setAckeeRecord } from './utilities/ackee';
import {
hideToBottom,
hideToLeft,
@@ -360,9 +361,12 @@ function setAppLocale() {
}
/**
- * Initialize the website with the projects list.
+ * Initialize the website with the projects list and Ackee.
*/
function init() {
+ const ackee = createAckeeInstance();
+
+ setAckeeRecord(ackee);
setAppLocale();
translateHTMLContent();
replaceLegalNoticeLink();