-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (39 loc) · 1.29 KB
/
index.html
File metadata and controls
49 lines (39 loc) · 1.29 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
45
46
47
48
49
<!DOCTYPE html>
<meta charset=utf-8>
<meta name=viewport content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Kodi / Shadow Player [[Development Version]]</title>
<link rel=icon href=assets/icon.png>
<link rel=stylesheet href=css/style.css>
<div id=videoPlayer></div>
<script src="https://jspm.io/system@0.19.js"></script>
<script src="assets/advancedSettings.js"></script>
<script>
advancedSettings.debug = true
if (!advancedSettings.jsonRPC) advancedSettings.jsonRPC = {}
//advancedSettings.jsonRPC.debug = true // Generates lots of messages (all network requests and responses are output to console)
if (!advancedSettings.xbmc) advancedSettings.xbmc = {}
advancedSettings.xbmc.debug = true
System.config({
paths: {
//"npm:": "jspm_packages/npm/",
//"github:": "jspm_packages/github/",
"shadowPlayer/": "js/"
},
transpiler: "babel",
packages: {
"shadowPlayer": {
"main": "main.js",
"format": "esm"
}
},
map: {
"babel-polyfill": "npm:babel-polyfill",
"vue": "./jspm_packages/npm/vue@2.4.4/dist/vue.js",
"vue-touch": "npm:vue-touch-easyhi",
"vue-slider-component": "npm:vue-slider-component",
"vue-icon-component": "npm:vue-awesome"
}
})
System.import("babel-polyfill")
System.import("shadowPlayer")
</script>