1
0
Fork 0

actualización

This commit is contained in:
Hacky Purple 2018-12-08 18:19:20 -05:00
parent 4b9b19aff9
commit c92d2b92c5
1 changed files with 8 additions and 0 deletions

View File

@ -9,3 +9,11 @@ $(window).scroll(function() {
$(window).scroll(function(){
$(".top").css("opacity", 1 - $(window).scrollTop() / 100);
});
$(document).ready(function(){
$('#user_dropdow').on("click", function(e){
$(this).next('ul').toggle();
e.stopPropagation();
e.preventDefault();
});
});