-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (35 loc) · 1.05 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<html>
<head>
<meta charset="utf-8" />
<link
rel="stylesheet"
type="text/css"
href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200italic,400,600,600italic,700" />
</head>
<body>
<script src="https://unpkg.com/@jam-comments/client/component"></script>
<script>
// import "./src/component.ts";
window.didit = () => {
console.log("Client initialized!!!");
};
// import {
// initialize
// } from "./src/index";
// initialize("#root", {
// path: "/posts/options-for-removing-event-listeners",
// apiKey: "1|orQ0KSXdKyFwtsRIKCgj1JxxbgNeg6ME9TIhbJfp",
// domain: "macarthur.me",
// environment: "production",
// }).then(() => {
// console.log("Client initialized");
// });
</script>
<jam-comments
data-api-key="1|orQ0KSXdKyFwtsRIKCgj1JxxbgNeg6ME9TIhbJfp"
data-domain="macarthur.me"
data-environment="production"
data-initialized-callback="didit">
</jam-comments>
</body>
</html>