Skip to content

Commit

Permalink
Improved hidden help section fix.
Browse files Browse the repository at this point in the history
Thinking in the future maintenance.
  • Loading branch information
RDCH106 committed Sep 15, 2016
1 parent e893165 commit d060580
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});
});

Expand Down

0 comments on commit d060580

Please sign in to comment.