-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathiframe.html
25 lines (24 loc) · 881 Bytes
/
iframe.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<html>
<body>
<div id="universalPixelContainer">
<script type="text/javascript">
(function(global) {
var ttdcm = new TTDCM();
ttdcm.init( [] );
})(this);
</script>
<script type="text/javascript">
parent.postMessage(`{
"baseUrl": "http://localhost:8080",
"subscriptionId": "4WvryDGbR5",
"serverPublicKey": "UID2-X-L-MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEtXJdTSZAYHvoRDWiehMHoWF1BNPuqLs5w2ZHiAZ1IJc7O4/z0ojPTB0V+KYX/wxQK0hxx6kxCvHj335eI/ZQsQ==",
"cssSelectors": ["input[type=email]"],
"detectionSubject": ["email"],
"detectionEventType": "onclick",
"triggerElements": ["button.form-submit"],
"detectDynamicNodes": true
}`, '*');
</script>
</div>
</body>
</html>