-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ab79331
commit 38e48b4
Showing
6 changed files
with
42 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,48 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<style type="text/css"> | ||
html { margin:0; height: auto; } | ||
</style> | ||
<html lang="en"> | ||
<style> | ||
html { | ||
margin: 0; | ||
height: auto; | ||
} | ||
</style> | ||
|
||
<head> | ||
<title id="app-title">Cloud Morph Demo</title> | ||
<title id="app-title">Cloud Morph Demo</title> | ||
|
||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> | ||
<link href="/static/css/main.css" rel="stylesheet" /> | ||
<!-- Global site tag (gtag.js) - Google Analytics --> | ||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-ZZ8L95MM0V"></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag(){dataLayer.push(arguments);} | ||
gtag('js', new Date()); | ||
<link href="/static/css/main.css" rel="stylesheet"/> | ||
<!-- Global site tag (gtag.js) - Google Analytics --> | ||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-ZZ8L95MM0V"></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
|
||
gtag('config', 'G-ZZ8L95MM0V'); | ||
</script> | ||
function gtag() { | ||
dataLayer.push(arguments); | ||
} | ||
|
||
gtag('js', new Date()); | ||
|
||
gtag('config', 'G-ZZ8L95MM0V'); | ||
</script> | ||
</head> | ||
|
||
<body> | ||
<style type="text/css"> | ||
body { margin:0; height: auto; } | ||
</style> | ||
<style type="text/css"> | ||
body { | ||
margin: 0; | ||
height: auto; | ||
} | ||
</style> | ||
|
||
<video id="app-screen" oncontextmenu="return false;" muted playinfullscreen="false" poster="/static/img/loading.gif" playsinline | ||
onloadstart="this.volume=0.5" autoplay width="100%" height="100%"></video> | ||
<script src="/static/js/log.js"></script> | ||
<script src="/static/js/env.js"></script> | ||
<script src="/static/js/event/event.js"></script> | ||
<script src="/static/js/network/socket.js"></script> | ||
<script src="/static/js/network/rtcp.js"></script> | ||
<script src="/static/js/appcontroller.js"></script> | ||
<script src="/static/js/init.js"></script> | ||
<video id="app-screen" oncontextmenu="return false;" muted playinfullscreen="false" poster="/static/img/loading.gif" | ||
playsinline | ||
onloadstart="this.volume=0.5" autoplay width="100%" height="100%"></video> | ||
<script src="/static/js/log.js"></script> | ||
<script src="/static/js/env.js"></script> | ||
<script src="/static/js/event/event.js"></script> | ||
<script src="/static/js/network/socket.js"></script> | ||
<script src="/static/js/network/rtcp.js"></script> | ||
<script src="/static/js/appcontroller.js"></script> | ||
<script src="/static/js/init.js"></script> | ||
</body> | ||
|
||
</html> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -120,4 +120,4 @@ const socket = (() => { | |
connect: connect, | ||
// quit: quit, | ||
}; | ||
})($, event, log); | ||
})(event, log); |