Update index.html

This commit is contained in:
Daniel LaForce 2024-08-01 20:46:33 -06:00
parent 8a61296db8
commit d9f4c48cdc
1 changed files with 5 additions and 4 deletions

View File

@ -2,6 +2,7 @@
<html> <html>
<head> <head>
<title>CSMS Claims and Neighbors</title> <title>CSMS Claims and Neighbors</title>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-CC1B9CQ691"></script> <script async src="https://www.googletagmanager.com/gtag/js?id=G-CC1B9CQ691"></script>
<script> <script>
window.dataLayer = window.dataLayer || []; window.dataLayer = window.dataLayer || [];
@ -58,8 +59,8 @@
</head> </head>
<body> <body>
<h1>CSMS Claims and Neighbors</h1> <h1>CSMS Claims and Neighbors</h1>
<iframe src="/redirect/google-maps"></iframe> <iframe src="https://csms.argobox.com/redirect/google-maps"></iframe>
<iframe src="/redirect/gaia-gps"></iframe> <iframe src="https://csms.argobox.com/redirect/gaia-gps"></iframe>
<div id="button-container"> <div id="button-container">
<a href="#" class="button" id="google-maps-link">View in Google Maps</a> <a href="#" class="button" id="google-maps-link">View in Google Maps</a>
<a href="#" class="button" id="gaia-gps-link">View in Gaia GPS</a> <a href="#" class="button" id="gaia-gps-link">View in Gaia GPS</a>
@ -87,7 +88,7 @@
event.preventDefault(); event.preventDefault();
const token = generateToken(16); const token = generateToken(16);
localStorage.setItem('gaiaAccessToken', token); localStorage.setItem('gaiaAccessToken', token);
const url = `/redirect/gaia-gps?token=${token}`; const url = `https://csms.argobox.com/redirect/gaia-gps?token=${token}`;
gtag('event', 'click', { gtag('event', 'click', {
'event_category': 'Outbound Link', 'event_category': 'Outbound Link',
'event_label': 'Gaia GPS', 'event_label': 'Gaia GPS',
@ -100,7 +101,7 @@
event.preventDefault(); event.preventDefault();
const token = generateToken(16); const token = generateToken(16);
localStorage.setItem('googleMapsAccessToken', token); localStorage.setItem('googleMapsAccessToken', token);
const url = `/redirect/google-maps?token=${token}`; const url = `https://csms.argobox.com/redirect/google-maps?token=${token}`;
gtag('event', 'click', { gtag('event', 'click', {
'event_category': 'Outbound Link', 'event_category': 'Outbound Link',
'event_label': 'Google Maps', 'event_label': 'Google Maps',