Remove unused function

This commit is contained in:
Unrud 2022-01-24 07:52:19 +01:00
parent 64327f326c
commit 348ec1f6ab
2 changed files with 2 additions and 14 deletions

File diff suppressed because one or more lines are too long

View file

@ -103,18 +103,6 @@ function fullscreenElement() {
null); null);
} }
function addFullscreenchangeEventListener(listener) {
if (document.fullscreenElement != undefined) {
document.addEventListener("fullscreenchange", listener);
} else if (document.webkitFullscreenElement != undefined) {
document.addEventListener("webkitfullscreenchange", listener);
} else if (document.mozFullScreenElement != undefined) {
document.addEventListener("mozfullscreenchange", listener);
} else if (document.msFullscreenElement != undefined) {
document.addEventListener("MSFullscreenChange", listener);
}
}
function copyTouch(touch, timeStamp) { function copyTouch(touch, timeStamp) {
return { return {
identifier: touch.identifier, identifier: touch.identifier,