Update index.html
This commit is contained in:
parent
8a61296db8
commit
d9f4c48cdc
|
@ -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',
|
||||||
|
|
Loading…
Reference in New Issue