You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nextcloud-server/js/js.js

12 lines
299 B

$(document).ready(function() {
// Hides the user_menu div :
$('#user_menu').hide();
// Sets user_menu link behaviour :
$('#user_menu_link').click(function() {
$('#user').toggleClass('userLinkOn');
$('#user_menu').slideToggle(250);
return false;
});
});