-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (37 loc) · 1.1 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
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="xsplit:config-url" content="index_config.html" />
<title>sourceplugin</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<h1>sourceplugin</h1>
<p>
XSplit JS Framework exposes useful methods to work with XSplit
without fiddling too much with the raw core methods exposed to
JavaScript, which makes developing plugins for XSplit a lot easier.
</p>
<p>
To get started, you just have to require our library:
<pre><code>var xjs = require('xjs');</code></pre>
</p>
<p>
You can read more about it at our documentation: <br />
<ul>
<li><a href="http://xjsframework.github.io/quickstart.html">
Quick Start
</a></li>
<li><a href="http://xjsframework.github.io/tutorials.html">
Tutorials
</a></li>
<li><a href="http://xjsframework.github.io/api.html">
API
</a></li>
</ul>
</p>
<script src="js/xjs.js"></script>
<script src="js/main.js"></script>
</body>
</html>