-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (39 loc) · 1.21 KB
/
index.html
File metadata and controls
40 lines (39 loc) · 1.21 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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache, must-revalidate">
<meta http-equiv="expires" content="Wed, 26 Feb 1997 08:21:57 GMT">
<title>VidOn.me</title>
<script type="text/javascript" src="js/vidon.me.launcher.js"?2.0.28></script>
<link rel="stylesheet" href="css/jquery.mCustomScrollbar.css">
</head>
<body>
<script src="js/jquery.mCustomScrollbar.concat.min.js"></script>
<script type="text/javascript">
$(function(){
vidonme.rpc.request({
'context': this,
'method': 'VidOnMe.IsWizzardEnabled',
'params': {},
'success': function(data) {
if( data ){
var debug = false;
var version = (debug ? Math.random() : '2.1.0.1');
if( data.result.ret == true ){
location.assign("guide.html?") + version;
window.location="guide.html?" + version;
location.href="guide.html?" + version;
}
else{
location.assign("mediashow.html?") + version;
window.location="mediashow.html?" + version;
location.href="mediashow.html?" + version;
}
}
}
});
})
</script>
</body>
</html>