Minor docs update (#3590)

This commit is contained in:
Suchintan
2025-10-02 15:36:40 -04:00
committed by GitHub
parent 8b0541af9f
commit 5468a73615
2 changed files with 26 additions and 0 deletions

23
fern/tracking.js Normal file
View File

@@ -0,0 +1,23 @@
// custom.js
(function () {
var SRC = "https://cosjk17vk.skyvern.com/analytics-0.1.js";
var ID = "customeros-metrics-loader";
function inject() {
if (
!document.getElementById(ID) &&
!document.querySelector('script[src="' + SRC + '"]')
) {
var s = document.createElement("script");
s.id = ID;
s.async = true;
s.src = SRC;
(document.head || document.body).appendChild(s);
}
}
// Inject the analytics script on page load
document.readyState === "loading"
? document.addEventListener("DOMContentLoaded", inject)
: inject();
})();