Skip to content

Commit

Permalink
Fixed rotateOut case
Browse files Browse the repository at this point in the history
  • Loading branch information
samdutton committed Apr 7, 2020
1 parent ff3cd2c commit bfba4e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions videoalpha/js/main.js
Expand Up @@ -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();
}
Expand Down

0 comments on commit bfba4e1

Please sign in to comment.