From bfba4e1e1a9e9c1e2bfd2361c868eb45019f7024 Mon Sep 17 00:00:00 2001 From: Sam Dutton Date: Tue, 7 Apr 2020 11:47:31 +0100 Subject: [PATCH] Fixed rotateOut case --- videoalpha/js/main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/videoalpha/js/main.js b/videoalpha/js/main.js index cf7dd77a..66bb666e 100644 --- a/videoalpha/js/main.js +++ b/videoalpha/js/main.js @@ -58,9 +58,9 @@ addEventListeners(video2); function handleDblclick(event) { var video = event.srcElement; - video.classList.remove('rotateOut'); + video.classList.remove('rotate-out'); setTimeout(function() { - video.classList.add('rotateOut'); + video.classList.add('rotate-out'); }, 5); event.preventDefault(); }