quitando el rebote de los formularios #191

Merged
humano merged 22 commits from h4ckypurpl3/tupali_fork:master into master 2019-03-25 23:20:30 +00:00
Showing only changes of commit c92d2b92c5 - Show all commits

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();
});
});