-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathrangeapi.html
More file actions
44 lines (42 loc) · 2.04 KB
/
rangeapi.html
File metadata and controls
44 lines (42 loc) · 2.04 KB
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
<!DOCTYPE html>
<html lang="en" xmlns:fb="http://ogp.me/ns/fb#" prefix="og: https://ogp.me/ns#">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>API - Range Engine</title>
<meta name="description" content="Learn Range Engine with the official manual documentation"/>
<meta name="theme-color" content="#f00000">
<meta property="og:type" content="website" />
<meta property="og:title" content="API - Range Engine"/>
<meta property="og:description" content="Learn Range Engine with the official manual documentation"/>
<meta property="og:site_name" content="Range Engine"/>
<meta property="og:image" content="https://rangeengine.tech/img/webp/ogp_splash.webp"/>
<meta name="twitter:card" content="summary_large_image">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<link href="https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.min.css"/>
<link rel="shortcut icon" href="img/webp/favicon.webp"/>
</head>
<body>
<div class="api-ver">
<h4>API Versions <i class="material-symbols-outlined">expand_more</i></h4>
<ul class="api-ul-ver">
<li><a href="api/10/html/index.html">1.0</a></li>
<li><a href="api/12/html/index.html">1.2</a></li>
<li><a href="api/14/html/index.html">1.4</a></li>
<li><a href="api/15/html/index.html">1.5</a></li>
<li><a href="api/16/html/index.html">1.6 LTS</a></li>
</ul>
</div>
<iframe id="iframe-api" src="api/16/html/index.html" title="API IFrame"></iframe>
<script>
const iFrame = document.getElementById('iframe-api');
function updateURL() {
const iframeWindow = iFrame.contentWindow;
const currentURL = iframeWindow.location.href;
history.pushState({}, '', currentURL);
}
iFrame.addEventListener('load', updateURL);
</script>
</body>
</html>