forked from bitovi/syn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
synthetic.html
85 lines (75 loc) · 1.73 KB
/
synthetic.html
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<title>Synthetic Demo</title>
<style type='text/css'>
body {font-family: verdana; padding: 0px; margin: 0px;}
#app {
border-left: none;
border-right: none;
border-top: none;
border-bottom: solid 2px black;
overflow: hidden;
top: 0px;
width: 100%;
}
iframe {
height: 100%;
border: none;
width: 100%;
padding: 0px;
margin: 0px;
}
#code {
padding: 0px;
margin: 0 0 0 210px;
border: none;
overflow: auto;
height: 100%;
}
a {
outline: none
}
#bottom {
/*position: fixed;*/
width: 100%;
bottom: 0px;
height: 196px;
border-top: solid 2px #E7ECEE;
border-bottom: solid 2px #E7ECEE;
}
#run {
float: left;
padding-top: 80px;
height: 118px;
width: 196px;
display: block;
text-align: center;
vertical-align: center;
font-size: 1.4em;
font-weight: bolder;
border-right: solid 2px #E7ECEE;
border-left: solid 2px #E7ECEE;
text-decoration: none;
}
#run:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div id='app'></div>
<div id='bottom'>
<a href="javascript://" id='run'>Replay ></a>
<pre id='code'>Click the tabs above to create replay code.</pre>
</div>
<script type='text/javascript' src='../../steal/steal.js'></script>
<script type='text/javascript'>
steal.plugins('funcunit/syn','mxui/filler').start();
</script>
<script type='text/javascript' src='demo/record.js'></script>
<script type='text/javascript' id="demo-source">
</script>
</body>
</html>