-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
29 lines (29 loc) · 943 Bytes
/
index.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
26
27
28
29
<html>
<body>
<div id="msg">
JS not yet executed.
</div>
<script type="text/javascript" src="dns_resolver.js"></script>
<script>
function appendMessage(str) {
var msg = document.getElementById("msg");
msg.innerHTML += "<br>" + str;
console.log(str);
}
function parse_and_redirect() {
appendMessage("JS running, trying to match query.");
var query = get_dns_query();
get_destination(query).then(destination => {
appendMessage("destination:" + destination);
if (destination != null) {
appendMessage("Match found, redirecting...");
window.location.href = destination;
} else {
appendMessage("Not match found.");
}
});
}
parse_and_redirect();
</script>
</body>
</html>