Skip to content

Commit a69c5d2

Browse files
committed
add some dummy data
1 parent 3d57b50 commit a69c5d2

File tree

6 files changed

+13464
-0
lines changed

6 files changed

+13464
-0
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
11
# smartui-github-testing
2+
3+
4+
For Testing Github App Integration with SmartUI

guacamole.html

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
<html>
2+
3+
<head>
4+
<title>Guacamole Client</title>
5+
<script src="guacamole.js"></script>
6+
<script src="jquery-min.js"></script>
7+
<style>
8+
.hidden {
9+
display: none !important;
10+
}
11+
12+
#loading,
13+
#guac-connection-timeout {
14+
align-items: center;
15+
display: flex;
16+
height: 100%;
17+
justify-content: center;
18+
width: 100%;
19+
}
20+
21+
.loader {
22+
-webkit-animation: spin 2s linear infinite; /* Safari */
23+
animation: spin 2s linear infinite;
24+
border: 1.5px solid #409ff6;
25+
border-top: 1.5px solid transparent;
26+
border-radius: 50%;
27+
height: 20px;
28+
width: 20px;
29+
}
30+
31+
/* Safari */
32+
@-webkit-keyframes spin {
33+
0% { -webkit-transform: rotate(0deg); }
34+
100% { -webkit-transform: rotate(360deg); }
35+
}
36+
37+
@keyframes spin {
38+
0% { transform: rotate(0deg); }
39+
100% { transform: rotate(360deg); }
40+
}
41+
</style>
42+
</head>
43+
44+
45+
<body style="margin:0px;">
46+
<div style="float: left;">
47+
48+
<input id="text" type="text">
49+
<button id="send-text" style="margin-left:15px;margin-top:2px;position:fixed;" name="Send">Send</button>
50+
</div>
51+
52+
53+
<input type="text" id="inputText" style="width:0px; height:0px; padding: 0px 0px 0px 0px; border-width: 0px !important;"></input>
54+
<div id="display" class="hidden" style="text-align: center !important; margin-left:12%; float: left;"></div>
55+
<div id="loading">
56+
<div class="loader"></div>
57+
</div>
58+
<div id="guac-connection-timeout" class="hidden">Couldn't connect to the machine</div>
59+
<div id='dpi'></div>
60+
<script src="main.js"></script>
61+
</body>
62+
63+
</html>

0 commit comments

Comments
 (0)