Skip to content

Commit c737636

Browse files
authored
Merge pull request #60 from Devwarlt/Implement-Client
Implement client
2 parents eccb4af + 66ad18c commit c737636

File tree

3 files changed

+42
-1
lines changed

3 files changed

+42
-1
lines changed

webclient/loe/.gitkeep

Lines changed: 0 additions & 1 deletion
This file was deleted.

webclient/loe/client-release.swf

4.11 MB
Binary file not shown.

webclient/loe/index.html

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<title>LoE v6</title>
5+
<link rel="icon" type="image/png" href="/loesoft.ico">
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
7+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
8+
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE" />
9+
<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE" />
10+
<META HTTP-EQUIV="Expires" CONTENT="-1" />
11+
<script language="JavaScript" type="text/javascript">
12+
var g_cacheBuster = "__rotmg_cb=1452042685";
13+
</script>
14+
<style type="text/css">
15+
html, body {
16+
height: 100%;
17+
margin: 0;
18+
overflow: hidden;
19+
}
20+
</style>
21+
<script language="JavaScript" type="text/javascript">
22+
<!--
23+
// -----------------------------------------------------------------------------
24+
// Globals
25+
// Major version of Flash required
26+
var requiredMajorVersion = 11;
27+
// Minor version of Flash required
28+
var requiredMinorVersion = 2;
29+
// Minor version of Flash required
30+
var requiredRevision = 0;
31+
// -----------------------------------------------------------------------------
32+
// -->
33+
</script>
34+
<body>
35+
<object type="application/x-shockwave-flash" data="client-release.swf" width="100%" height="100%" id="loe" style="visibility: visible;">
36+
<param name="wmode" value="direct">
37+
<param name="quality" value="high">
38+
<param name="bgcolor" value="#000000">
39+
<param name="flashvars" value="server=loesoft-test">
40+
</object>
41+
</body>
42+
</html>

0 commit comments

Comments
 (0)