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() {
handleSaveLayout();
}, timerSave);
var prevalue_sv = $('.sidebar-nav').css('overflow');
$('.popover-info').hover(function(){
$('.sidebar-nav').css('overflow', 'inherit');
}, function(){
$('.sidebar-nav').css('overflow', 'auto');
$('.sidebar-nav').css('overflow', prevalue_sv);
});
});