We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b51260a commit dba518bCopy full SHA for dba518b
index.html
@@ -72,7 +72,18 @@
72
return reader;
73
}
74
</script>
75
-
+ <script>
76
+ [
77
+ ['https://hypothes.is/embed.js', true],
78
+ ['document.body.style.position = "static";', false],
79
+ ].forEach(function(arg) {
80
+ let [src, urlQ] = arg;
81
+ var script = document.createElement('script');
82
+ script[(urlQ ? "src" : "text")] = src;
83
+ script.async = false
84
+ document.head.appendChild(script);
85
+ });
86
+ </script>
87
<!-- <script src="https://hypothes.is/embed.js" async></script> -->
88
89
</head>
0 commit comments