Files
UnrealEngineUWP/Engine/Source/Programs/PixelStreaming/SessionMonitor/DummyFrontend/frontend.html
Ryan Durand 9ef3748747 Updating copyrights for Engine Programs.
#rnx
#rb none
#jira none

#ROBOMERGE-OWNER: ryan.durand
#ROBOMERGE-AUTHOR: ryan.durand
#ROBOMERGE-SOURCE: CL 10869242 in //Fortnite/Release-12.00/... via CL 10869536
#ROBOMERGE-BOT: FORTNITE (Main -> Dev-EngineMerge) (v613-10869866)

[CL 10870955 by Ryan Durand in Main branch]
2019-12-26 23:01:54 -05:00

32 lines
944 B
HTML

<!-- Copyright Epic Games, Inc. All Rights Reserved. -->
<!DOCTYPE HTML>
<html>
<style type="text/css">
p{
margin : 0px;
}
</style>
<head>
<link rel="shortcut icon" href="/images/favicon.ico" type="image/x-icon">
<script type="text/javascript" src="scripts/frontend.js"></script>
</head>
<body>
<!-- From https://developer.mozilla.org/en-US/docs/Learn/HTML/Forms/Sending_forms_through_JavaScript !-->
<button type="button" onclick="sendCmd({ 'cmd': 'start', 'params': {} })">CMD: Start</button>
<button type="button" onclick="sendCmd({ 'cmd': 'stop', 'params': {} })">CMD: Stop</button>
<button type="button" onclick="sendCmd({ 'cmd': 'getevents', 'params': {} })">CMD: GetEvents</button>
<button type="button" onclick="clearLog()">Clear log</button>
<br />
<br />
<p>- LOG -</p>
<div id="debugDiv" style="background-color:gray;font-family:Courier New, Courier, monospace;font-size:small">
<p></p>
</div>
</body>
</html>