Added extra functions to the header.

A text button was added to go directly to the DM's and if you click your profile picture it pups up some links to go to.
This commit is contained in:
Lars van Hijfte
2017-01-11 13:49:54 +01:00
parent 87e7bf18d4
commit 24e0673caa
3 changed files with 42 additions and 6 deletions

7
website/js/header.js Normal file
View File

@@ -0,0 +1,7 @@
$(document).ready(function() {
$("#profile-menu-popup").hide();
$("#own-profile-picture").click(function() {
$("#profile-menu-popup").toggle();
$("#profile-hello-popup").toggle();
});
});