double speed for user menu slide

This commit is contained in:
Jan-Christoph Borchardt 2013-02-14 17:13:50 +01:00
parent 95575a7fd1
commit 3f09cc139f
1 changed files with 2 additions and 2 deletions

View File

@ -663,14 +663,14 @@ $(document).ready(function(){
}
});
$('#settings #expand').click(function(event) {
$('#settings #expanddiv').slideToggle();
$('#settings #expanddiv').slideToggle(200);
event.stopPropagation();
});
$('#settings #expanddiv').click(function(event){
event.stopPropagation();
});
$(window).click(function(){//hide the settings menu when clicking outside it
$('#settings #expanddiv').slideUp();
$('#settings #expanddiv').slideUp(200);
});
// all the tipsy stuff needs to be here (in reverse order) to work