diff options
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/js/filelist.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index edcc5519b20..2dacabaa9d6 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -32,7 +32,7 @@ window.FileList={ title += FileList.appName; // Sets the page title with the " - ownCloud" suffix as in templates window.document.title = title + ' - ' + oc_defaults.title; - + return true; }, /** @@ -874,7 +874,7 @@ window.FileList={ $(document).ready(function() { var baseDir, - isPublic = !!$('#isPublic').val(); + isPublic = !!$('#isPublic').val(); // handle upload events var file_upload_start = $('#file_upload_start'); @@ -1160,6 +1160,6 @@ $(document).ready(function() { } FileList.setCurrentDir(parseCurrentDirFromUrl(), false); - + FileList.createFileSummary(); }); |