diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-07-04 11:45:36 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-07-04 11:45:36 +0200 |
commit | 59ca30d462f3b3a5703f203d2d4c3641c456e560 (patch) | |
tree | 35994bc6782c3eff03d38109209116ccd6397bbb /apps/files/js | |
parent | e4a3f8d3c44f3238071d03f793cd2c5395062b5e (diff) | |
download | nextcloud-server-59ca30d462f3b3a5703f203d2d4c3641c456e560.tar.gz nextcloud-server-59ca30d462f3b3a5703f203d2d4c3641c456e560.zip |
Fix reload call for all subclasses
All subclasses must also properly return the ajax call object.
Diffstat (limited to 'apps/files/js')
-rw-r--r-- | apps/files/js/filelist.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 400e3e28f00..9c6d31ee017 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -919,7 +919,9 @@ .addClass(direction === 'desc' ? this.SORT_INDICATOR_DESC_CLASS : this.SORT_INDICATOR_ASC_CLASS); }, /** - * @brief Reloads the file list using ajax call + * Reloads the file list using ajax call + * + * @return ajax call object */ reload: function() { this._selectedFiles = {}; |