Improved hidden help section fix.

Thinking in the future maintenance.
This commit is contained in:
Rubén de Celis Hernández
2016-09-15 14:12:45 +02:00
parent e893165226
commit d06058013d

View File

@@ -466,10 +466,11 @@ $(document).ready(function() {
setInterval(function() { setInterval(function() {
handleSaveLayout(); handleSaveLayout();
}, timerSave); }, timerSave);
var prevalue_sv = $('.sidebar-nav').css('overflow');
$('.popover-info').hover(function(){ $('.popover-info').hover(function(){
$('.sidebar-nav').css('overflow', 'inherit'); $('.sidebar-nav').css('overflow', 'inherit');
}, function(){ }, function(){
$('.sidebar-nav').css('overflow', 'auto'); $('.sidebar-nav').css('overflow', prevalue_sv);
}); });
}); });