Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Replace files app ids to classes
Replaced ids to classes for the following:

- #filestable -> .files-filestable
- #fileList -> .files-fileList
- #controls -> .files-controls
- #emptycontent -> .emptyfilelist.emptycontent

Signed-off-by: Vincent Petry <[email protected]>
  • Loading branch information
PVince81 committed Jul 26, 2022
commit bb2557c38974bea38dcc48185723b33781412cbd
4 changes: 2 additions & 2 deletions apps/comments/tests/js/filespluginSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ describe('OCA.Comments.FilesPlugin tests', function() {
// dummy file list
var $div = $(
'<div>' +
'<table id="filestable">' +
'<table class="files-filestable">' +
'<thead></thead>' +
'<tbody id="fileList"></tbody>' +
'<tbody class="files-fileList"></tbody>' +
'</table>' +
'</div>');
$('#content').append($div);
Expand Down
Loading