-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathindex.html
30 lines (29 loc) · 1.06 KB
/
index.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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>MLDB Documentation</title>
<script src="{{HTTP_BASE_URL}}/resources/js/jquery-1.11.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){
var defaultURL = window.location.hash.slice(1);
if(defaultURL == "") { defaultURL = "builtin/Overview.md.html"; }
$("#rh")
.attr("src", defaultURL)
.load(function(){
if(history.replaceState) {
history.replaceState(null, null,
'#'+this.contentWindow.location.pathname.replace(new RegExp("^{{HTTP_BASE_URL}}/doc/"),""));
}
});
});
</script>
</head>
<frameset cols="300, *">
<frame src="{{HTTP_BASE_URL}}/doc/builtin/toc.md.html">
<frame id="rh" name="rh" src="builtin/Overview.md.html">
<noframes>
<p>This page requires frames</p>
</noframes>
</frameset>
</html>