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.
8 lines
216 B
JavaScript
8 lines
216 B
JavaScript
$(document).ready(function() {
|
|
$("#profile-menu-popup").hide();
|
|
$("#own-profile-picture").click(function() {
|
|
$("#profile-menu-popup").toggle();
|
|
$("#profile-hello-popup").toggle();
|
|
});
|
|
});
|