Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 9 additions & 11 deletions app/client/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -73,24 +73,22 @@
</script>
<!-- End of Reo Javascript -->

<!-- Start of BetterBugs Recording Links (logs + recorder; only when BetterBugs enabled and not airgapped) -->
<!-- Start of BetterBugs Recording Links — https://docs.betterbugs.io/dashboard/workspace-settings/recording-links -->
<script type="text/javascript">
if (!DISABLE_BETTERBUGS && !AIRGAPPED) {
window.__BetterbugsRecordingLinkConfig = {
styles: { theme: "light", primaryColor: "#E15615", primaryTextColor: "#ffffff" },
successMessageHeaderText: "Information received",
successMessageSubHeaderText: "Our support team will use it to review the issue",
};
(function () {
var s1 = document.createElement("script");
s1.src = "https://cdn.betterbugs.io/scripts/latest/logs-capture.js";
s1.async = true;
document.head.appendChild(s1);
var s2 = document.createElement("script");
s2.src = "https://cdn.betterbugs.io/scripts/latest/recorder.js";
s2.async = true;
document.head.appendChild(s2);
})();
const s1 = document.createElement("script");
s1.src = "https://pkg.betterbugs.io/scripts/latest/logs-capture.js";
s1.async = false;
document.head.appendChild(s1);
const s2 = document.createElement("script");
s2.src = "https://pkg.betterbugs.io/scripts/latest/recorder.js";
s2.async = false;
document.head.appendChild(s2);
}
</script>
<!-- End of BetterBugs Recording Links -->
Expand Down
Loading