-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.js
More file actions
37 lines (29 loc) · 1008 Bytes
/
Copy pathcontent.js
File metadata and controls
37 lines (29 loc) · 1008 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
28
29
30
31
32
33
34
35
36
37
// var vid = document.getElementById("my_video_1_html5_api");
// if(vid === null || vid === undefined) {
// alert("NO VIDEO FOUND");
// }
// else {
// //vid.addEventListener("onended", kissanime);
// vid.addEventListener("onended", function() {
// var nextArrow = document.getElementById("btnNext");
// var nextEpLink = nextArrow.parentElement.src;
// window.location.href = 'nextEpLink';
// });
// }
function kissanime() {
// use the onended property to see when the video has actually finished
// we probably need an eventlistener to work around that
// var nextArrow = document.getElementById("btnNext");
// var nextEpLink = nextArrow.parentElement.src;
// window.location.href = 'nextEpLink';
}
function placeKissAnimeFunction() {
// var vid = document.getElementById("my_video_1_html5_api");
// if(vid === null || vid === undefined) {
// alert("NO VIDEO FOUND");
// return;
// }
// else
// vid.setAttribute("onended", "kissanime()");
}
function toonova() {}