reversando el parado de la propagación #192

Merged
humano merged 3 commits from h4ckypurpl3/tupali_fork:master into master 2019-03-26 23:31:19 +00:00
2 changed files with 6 additions and 7 deletions
Showing only changes of commit 45da1a07d2 - Show all commits

View File

@ -1599,6 +1599,7 @@ echo $css_adicional;
<!-- END #fh5co-offcanvas -->
<header id="fh5co-header">
<!-- En el contenedor principal superior está: el nombre de empresa, el eslogan, el asistento -->
<div class="container-fluid" id='principal_superior'>
<div id='formulario_login' class='' ></div>
<div id='div_panel_aplicaciones' class=''></div>

View File

@ -10,10 +10,8 @@ $(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();
});
$('.dropdown-menu').click(function(e) {
e.stopPropagation(); //This will prevent the event from bubbling up and close the dropdown when you type/click on text boxes.
});