-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-editor.html
More file actions
27 lines (25 loc) · 820 Bytes
/
test-editor.html
File metadata and controls
27 lines (25 loc) · 820 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Rendley Integration Test</title>
<script type="module">
import { defineCustomElements } from "https://cdn.rendleysdk.com/sdk/video-editor/1.0.0/loader/index.js";
defineCustomElements();
</script>
</head>
<body>
<rendley-video-editor
id="rendley"
licensename="rendley"
licensekey="3B396126BF9A20315F4F0001"
></rendley-video-editor>
<button id="serverRenderBtn" style="margin-top: 20px; padding: 10px;">
Send to Rendering Server
</button>
<button id="batchTestBtn" style="margin-top: 20px; padding: 10px; background: #4CAF50; color: rgb(107, 53, 53);">
Run Mass Import Test
</button>
<script src="test-script.js"></script>
</body>
</html>