diff options
Diffstat (limited to 'apps/files_sharing')
-rw-r--r-- | apps/files_sharing/templates/list.php | 2 | ||||
-rw-r--r-- | apps/files_sharing/tests/js/publicAppSpec.js | 2 | ||||
-rw-r--r-- | apps/files_sharing/tests/js/shareSpec.js | 6 | ||||
-rw-r--r-- | apps/files_sharing/tests/js/sharedfilelistSpec.js | 4 |
4 files changed, 7 insertions, 7 deletions
diff --git a/apps/files_sharing/templates/list.php b/apps/files_sharing/templates/list.php index ec13b5c1f77..de92037a563 100644 --- a/apps/files_sharing/templates/list.php +++ b/apps/files_sharing/templates/list.php @@ -10,7 +10,7 @@ <h2><?php p($l->t('No entries found in this folder')); ?></h2> </div> -<table id="filestable"> +<table id="filestable" class="list-container view-grid"> <thead> <tr> <th id='headerName' class="hidden column-name"> diff --git a/apps/files_sharing/tests/js/publicAppSpec.js b/apps/files_sharing/tests/js/publicAppSpec.js index dc9000af152..9d24a7a7946 100644 --- a/apps/files_sharing/tests/js/publicAppSpec.js +++ b/apps/files_sharing/tests/js/publicAppSpec.js @@ -60,7 +60,7 @@ describe('OCA.Sharing.PublicApp tests', function() { '<input type="file" id="file_upload_start" name="files[]" multiple="multiple">' + // dummy table // TODO: at some point this will be rendered by the fileList class itself! - '<table id="filestable">' + + '<table id="filestable" class="list-container view-grid">' + '<thead><tr>' + '<th id="headerName" class="hidden column-name">' + '<input type="checkbox" id="select_all_files" class="select-all">' + diff --git a/apps/files_sharing/tests/js/shareSpec.js b/apps/files_sharing/tests/js/shareSpec.js index 554a3a82b34..39472fdeedb 100644 --- a/apps/files_sharing/tests/js/shareSpec.js +++ b/apps/files_sharing/tests/js/shareSpec.js @@ -28,7 +28,7 @@ describe('OCA.Sharing.Util tests', function() { // dummy file list var $div = $( '<div id="listContainer">' + - '<table id="filestable">' + + '<table id="filestable" class="list-container view-grid">' + '<thead></thead>' + '<tbody id="fileList"></tbody>' + '</table>' + @@ -510,8 +510,8 @@ describe('OCA.Sharing.Util tests', function() { OCA.Sharing.Util.attach(fileList); fileList.setFiles(testFiles); }); - afterEach(function() { - shareTabSpy.restore(); + afterEach(function() { + shareTabSpy.restore(); }); it('updates fileInfoModel when shares changed', function() { diff --git a/apps/files_sharing/tests/js/sharedfilelistSpec.js b/apps/files_sharing/tests/js/sharedfilelistSpec.js index c9e2bafcc23..b0b7c1b9b99 100644 --- a/apps/files_sharing/tests/js/sharedfilelistSpec.js +++ b/apps/files_sharing/tests/js/sharedfilelistSpec.js @@ -28,7 +28,7 @@ describe('OCA.Sharing.FileList tests', function() { '</div>' + // dummy table // TODO: at some point this will be rendered by the fileList class itself! - '<table id="filestable">' + + '<table id="filestable" class="list-container view-grid">' + '<thead><tr>' + '<th id="headerName" class="hidden column-name">' + '<input type="checkbox" id="select_all_files" class="select-all">' + @@ -701,7 +701,7 @@ describe('OCA.Sharing.FileList tests', function() { // dummy file list var $div = $( '<div>' + - '<table id="filestable">' + + '<table id="filestable" class="list-container view-grid">' + '<thead></thead>' + '<tbody id="fileList"></tbody>' + '</table>' + |