1
0
Fork 0

ultimos cambios

This commit is contained in:
Hacky Purple 2019-03-26 13:02:46 -05:00
parent 4366c2d836
commit 45da1a07d2
2 changed files with 6 additions and 7 deletions

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