We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fff099 commit a26563dCopy full SHA for a26563d
1 file changed
js/main.js
@@ -1,3 +1,17 @@
1
+// --- Seline Analytics ---
2
+function initSeline() {
3
+ if (typeof seline !== "undefined") {
4
+ seline.init({
5
+ token: "091747081ed47e6",
6
+ autoPageView: true
7
+ });
8
+ console.log("Seline initialized");
9
+ } else {
10
+ setTimeout(initSeline, 100);
11
+ }
12
+}
13
+document.addEventListener("DOMContentLoaded", initSeline);
14
+
15
function scrollToMission() {
16
document.getElementById('mission').scrollIntoView({
17
behavior: 'smooth'
0 commit comments