-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
30 lines (29 loc) · 1018 Bytes
/
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
---
layout: base
title: Homepage
---
<p>WebIDLpedia provides information on all the IDL definitions used by specifications for the Web Platform (as identified in <a href="">browser-specs</a> and published in <a href="">webref</a>).</p>
<p>It aims to facilitate coordination across the various groups and organizations involved in developing these specifications.</p>
<script>
// Redirects for previously used query-string parameters for WebIDL pedia
const params = location.search.slice(1);
const paramName = params.split("=")[0] || null;
const paramValue = params.split("=")[1] || null;
switch(paramName) {
case "idlname":
window.location.href = "names/" + paramValue + ".html";
break;
case "enums":
window.location.href = "enum.html";
break;
case "extattr":
window.location.href = "extended-attributes.html";
break;
case "members":
window.location.href = "members.html";
break;
case "full":
window.location.href = "names/index.html";
break;
}
</script>