summaryrefslogtreecommitdiffstats
path: root/apps/files
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2015-10-21 13:43:39 +0200
committerVincent Petry <pvince81@owncloud.com>2015-10-21 13:43:39 +0200
commite36c85178f446c1b8c570ad52206f19523a823f8 (patch)
tree545a1c308fcf81459ebe0ba310a2c4b835ea9cf8 /apps/files
parentd0aeb268d687f803e62069c852bcd7a1a86eadee (diff)
downloadnextcloud-server-e36c85178f446c1b8c570ad52206f19523a823f8.tar.gz
nextcloud-server-e36c85178f446c1b8c570ad52206f19523a823f8.zip
Do not display details bar after rename
Diffstat (limited to 'apps/files')
-rw-r--r--apps/files/js/filelist.js9
1 files changed, 6 insertions, 3 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index 4f5fdf242d9..c84d6c3c47d 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -390,12 +390,15 @@
* Update the details view to display the given file
*
* @param {string} fileName file name from the current list
+ * @param {boolean} [show=true] whether to open the sidebar if it was closed
*/
- _updateDetailsView: function(fileName) {
+ _updateDetailsView: function(fileName, show) {
if (!this._detailsView) {
return;
}
+ // show defaults to true
+ show = _.isUndefined(show) || !!show;
var oldFileInfo = this._detailsView.getFileInfo();
if (oldFileInfo) {
// TODO: use more efficient way, maybe track the highlight
@@ -413,7 +416,7 @@
return;
}
- if (this._detailsView.$el.hasClass('disappear')) {
+ if (show && this._detailsView.$el.hasClass('disappear')) {
OC.Apps.showAppSidebar(this._detailsView.$el);
}
@@ -1771,7 +1774,7 @@
tr.remove();
tr = self.add(fileInfo, {updateSummary: false, silent: true});
self.$fileList.trigger($.Event('fileActionsReady', {fileList: self, $files: $(tr)}));
- self._updateDetailsView(fileInfo.name);
+ self._updateDetailsView(fileInfo.name, false);
}
});
} else {