This repository has been archived by the owner on Jan 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
documentation.html
99 lines (88 loc) · 3.55 KB
/
documentation.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Documentation - Testatoo</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="description" content="Documentation">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="css/site.css">
<link rel="shortcut icon" href="img/icon.jpg">
</head>
<body class="started-page" data-spy="scroll" data-target=".left-nav" data-offset="90">
<nav class="navbar navbar-inverse navbar-fixed-top navbar-right" role="navigation">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href=".">
<img src="img/icon.svg" class="project-icon" alt="Testatoo Icon"/>
</a>
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#site-navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
</div>
</nav>
<div class="container-fluid">
<style>iframe{width:100%}</style>
<iframe id="doc" src="doc/testatoo.html" scrolling="no" marginheight="0" frameborder="0" onLoad="autoResize('doc')" style="margin-top: 3em">
</iframe>
<script>iFrameResize({log: true, heightCalculationMethod: 'documentElementScroll'})</script>
</div>
<footer>
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<ul class="list-inline center-block text-cente" style="margin-top: 2em">
<li><span>Current Version v2.0.b21</span></li>
<li>-</li>
<li>
<a target="_blank" href="https://github.com/ovea/testatoo" title="Github Repository">
<img src="img/github.png">
<span>Github Repository</span>
<li>-</li>
<li><a target="_blank" href="https://github.com/ovea/testatoo/issues">Issues</a></li>
<li>-</li>
<li><a target="_blank" href="https://gitter.im/Ovea/testatoo">Chat</a></li>
</ul>
</div>
</div>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="vendors/iframeResizer.contentWindow.min.js"></script>
<script src="vendors/iframeResizer.min.js"></script>
<script language="JavaScript">
function autoResize(id){
var newheight;
var newwidth;
if(document.getElementById){
newheight=document.getElementById(id).contentWindow.document .body.scrollHeight;
newwidth=document.getElementById(id).contentWindow.document .body.scrollWidth;
}
document.getElementById(id).height= (newheight) + "px";
document.getElementById(id).width= (newwidth) + "px";
}
</script>
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-58443041-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>