This commit is contained in:
cutls 2019-10-20 19:09:52 +09:00
parent 8784cae01c
commit 3e5f9c51f5
2 changed files with 6 additions and 0 deletions

View File

@ -23,4 +23,7 @@ $(document).ready(function () {
}
);
$('.collapsible').collapsible();
$('#videomodal').modal({
onCloseEnd: stopVideo
});
});

View File

@ -281,4 +281,7 @@ function dlImg() {
}
function openFinder(dir) {
postMessage(["openFinder", dir], "*")
}
function stopVideo(){
document.getElementById('video').pause()
}