We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c5a72e commit 566043aCopy full SHA for 566043a
docs/javascript/extra.js
@@ -10,6 +10,7 @@ const awsconfig = {
10
};
11
12
const RUNTIME = "python"
13
+const BASE_ORIGIN = "awslabs.github.io"
14
15
function copyToClipboard(e) {
16
e.preventDefault()
@@ -18,6 +19,7 @@ function copyToClipboard(e) {
18
19
}
20
21
function enableSearchOnBlurElement() {
22
+ if (document.location.hostname != BASE_ORIGIN) return // prevent unnecessary data
23
/* Register handler to log search on blur */
24
document.addEventListener("DOMContentLoaded", function () {
25
recordPageView({
0 commit comments