2
0

Added a new introduction video to the Master Password website.

This commit is contained in:
Maarten Billemont
2014-10-06 22:03:18 -04:00
parent a18793b161
commit 480e7f192a
11 changed files with 91 additions and 15 deletions

View File

@@ -6,3 +6,13 @@ $(function(){
};
});
function toggleMovie() {
if ($("header").hasClass("play")) {
$("header").removeClass("play");
$("header video")[0].pause();
} else {
$("header").addClass("play");
$("header video")[0].play();
}
}