Languages selector

This commit is contained in:
HenryGBC 2017-03-23 22:29:17 -04:30
commit 2c21444037
5 changed files with 92 additions and 11 deletions

View file

@ -16,6 +16,7 @@
$( document ).ready(function() {
init_nav();
initBackgroundsHeader();
init_hovers();
});
//Infinite loop for change Background Header
@ -45,4 +46,17 @@
}
function init_hovers(){
$('.select-language').hover(function() {
$('.drop-language').show();
}, function() {
$('.drop-language').hide();
})
$('.drop-language').hover(function() {
$('.drop-language').show();
}, function() {
$('.drop-language').hide();
})
}
})(jQuery);