-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdisplay.php
More file actions
32 lines (32 loc) · 1.11 KB
/
Copy pathdisplay.php
File metadata and controls
32 lines (32 loc) · 1.11 KB
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
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Cache-control" content="No-Cache, No-Store, Must-Revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<meta charset="UTF-8">
<title>RT Web Signage</title>
<!--Favicon Links -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<!--CSS LINK-->
<link rel="stylesheet" type="text/css" href="display.css">
</head>
<body class="displayBody">
<div class="myBack" id="myImage"></div>
<script src="display.js"></script>
<iframe id="modFrame" tabindex="-1"></iframe>
<script>
var url_string = window.location.href; //window.location.href
var url = new URL(url_string);
var screenID = url.searchParams.get("screenID");
if (isNaN(screenID)) {
screenID = 1;
}
document.getElementById("modFrame").id = "modFrame" + screenID;
init();
</script>
</body>
</html>