Only check selection for delete permissions, not parent folder

This commit is contained in:
Robin McCorkell 2016-01-15 16:52:51 +00:00
parent fcec704174
commit a49aff2db7
1 changed files with 1 additions and 3 deletions

View File

@ -2305,7 +2305,6 @@
*/ */
updateSelectionSummary: function() { updateSelectionSummary: function() {
var summary = this._selectionSummary.summary; var summary = this._selectionSummary.summary;
var canDelete;
var selection; var selection;
if (summary.totalFiles === 0 && summary.totalDirs === 0) { if (summary.totalFiles === 0 && summary.totalDirs === 0) {
@ -2316,7 +2315,6 @@
this.$el.find('.selectedActions').addClass('hidden'); this.$el.find('.selectedActions').addClass('hidden');
} }
else { else {
canDelete = (this.getDirectoryPermissions() & OC.PERMISSION_DELETE) && this.isSelectedDeletable();
this.$el.find('.selectedActions').removeClass('hidden'); this.$el.find('.selectedActions').removeClass('hidden');
this.$el.find('#headerSize a>span:first').text(OC.Util.humanFileSize(summary.totalSize)); this.$el.find('#headerSize a>span:first').text(OC.Util.humanFileSize(summary.totalSize));
@ -2338,7 +2336,7 @@
this.$el.find('#headerName a.name>span:first').text(selection); this.$el.find('#headerName a.name>span:first').text(selection);
this.$el.find('#modified a>span:first').text(''); this.$el.find('#modified a>span:first').text('');
this.$el.find('table').addClass('multiselect'); this.$el.find('table').addClass('multiselect');
this.$el.find('.delete-selected').toggleClass('hidden', !canDelete); this.$el.find('.delete-selected').toggleClass('hidden', !this.isSelectedDeletable());
} }
}, },