diff options
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/js/filelist.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index b46db792678..3ee976f1332 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -1433,6 +1433,12 @@ $tr.addClass('appear transparent'); window.setTimeout(function() { $tr.removeClass('transparent'); + $("#fileList tr").each(function(index) { + if ($(this).hasClass("mouseOver")) { + $(this).removeClass("mouseOver"); + } + }); + $tr.addClass('mouseOver'); }); } |