diff options
author | kondou <kondou@ts.unde.re> | 2013-07-03 19:50:03 +0200 |
---|---|---|
committer | kondou <kondou@ts.unde.re> | 2013-08-28 15:10:17 +0200 |
commit | 6bd0f3cba7491c55e53c637b3cae60ac9685f146 (patch) | |
tree | 6a3ca4570e2d528b7e31c044a543b044c01ee7eb /apps/files_trashbin/js | |
parent | b9a95af12c20f18376df4c4f8355b9911ff5a7fd (diff) | |
download | nextcloud-server-6bd0f3cba7491c55e53c637b3cae60ac9685f146.tar.gz nextcloud-server-6bd0f3cba7491c55e53c637b3cae60ac9685f146.zip |
Reimplement filesummary in JS
Fix #993
Diffstat (limited to 'apps/files_trashbin/js')
-rw-r--r-- | apps/files_trashbin/js/trash.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index b14a7240cbe..40c0bdb3829 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -20,6 +20,7 @@ $(document).ready(function() { OC.dialogs.alert(result.data.message, t('core', 'Error')); } enableActions(); + FileList.updateFileSummary(); }); }); @@ -48,6 +49,7 @@ $(document).ready(function() { OC.dialogs.alert(result.data.message, t('core', 'Error')); } enableActions(); + FileList.updateFileSummary(); }); }); |