diff options
author | Abijeet <abijeetpatro@gmail.com> | 2018-06-16 13:07:55 +0530 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-06-18 07:39:44 +0200 |
commit | 419d72e0eed300e5792f02c8d458a5da0367541d (patch) | |
tree | 831f9e397c36993afbd93c0d84b345f7c174ba1c /apps/files/js | |
parent | 55216e6b9558d333158aaed87d16d988f247da82 (diff) | |
download | nextcloud-server-419d72e0eed300e5792f02c8d458a5da0367541d.tar.gz nextcloud-server-419d72e0eed300e5792f02c8d458a5da0367541d.zip |
Adds a test case for the loading symbol in deleted files.
Signed-off-by: Abijeet <abijeetpatro@gmail.com>
Diffstat (limited to 'apps/files/js')
-rw-r--r-- | apps/files/js/filelist.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 08c2844a294..c420e7212a0 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -275,8 +275,7 @@ if (_.isUndefined(options.detailsViewEnabled) || options.detailsViewEnabled) { this._detailsView = new OCA.Files.DetailsView(); this._detailsView.$el.insertBefore(this.$el); - // this._detailsView.$el.addClass('disappear'); - this.showDetailsView('/'); + this._detailsView.$el.addClass('disappear'); } this._initFileActions(options.fileActions); |