New folder creation flow

Descend into newly created folder by clicking enter again.
Signed-off-by: Sagorika Das <sagorika1996@gmail.com>
This commit is contained in:
Sagorika Das 2018-03-01 17:19:07 +05:30
parent a966d5256c
commit d78e314d51
1 changed files with 6 additions and 0 deletions

View File

@ -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');
});
}