aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/tests/js/filesummarySpec.js
Commit message (Collapse)AuthorAgeFilesLines
* chore(files): Remove legacy UI scripts now that everything is migrated to VueFerdinand Thiessen2024-09-201-227/+0
| | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* chore: Add SPDX headerAndy Scherzinger2024-05-291-22/+3
| | | | Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
* fix(cypress): formatFileSize change revert from files libraryJohn Molakvoæ2023-11-081-9/+9
| | | | Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
* fix(tests): update jsunit tests after dep and files updateJohn Molakvoæ2023-04-061-9/+9
| | | | Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
* Fixing testsJohn Molakvoæ2023-01-041-3/+6
| | | | Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
* Replace license information to SPDX expressionLouis Chemineau2022-01-111-1/+1
| | | | Signed-off-by: Louis Chemineau <louis@chmn.me>
* Change the values in testValdnet2021-05-101-3/+3
| | | Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
* Bump js licensesJohn Molakvoæ (skjnldsv)2021-03-311-19/+22
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Display number of hidden files in files summary (#25870)Vincent Petry2016-08-291-9/+65
| | | | When dot files are hidden, the table summary and selection summary will not show how many hidden files were included.
* update JS humanFileSize to use KB instead of kBMorris Jobke2016-01-191-6/+6
|
* Adding a pending indicator to the files summary - fixes #14853Thomas Müller2015-03-271-0/+33
|
* add file summary filter spec testsJörn Friedrich Dreyer2015-01-021-0/+63
|
* Namespacing for FileList, FileActions and trashbin appVincent Petry2014-05-151-1/+2
| | | | | | | | | | | | | | | | | - FileList is now an instantiable class - FileActions is now in namespace - added App class for trashbin app - moved trashbin overrides into classes extending FileList - replaced many static calls with "this." or "self." to make the classes reusable/extendable - new URL parameter "view" to specify which view is shown, for example "files" or "trashbin" - added OC.Util.History utility class in core for handling history - moved URL handling/routing to OCA.Files.App - popstate will correctly update the current view and notify the view of the URL change so it can update the current dir - added JS unitt tests for the trashbin app - fixed public app to work with the new namespaces
* Fix file summary to use the whole file listVincent Petry2014-04-281-0/+87
- moved the summary code into a new class FileSummary - FileSummary is calculated only once, then updated with add/remove - added new OC.Util namespace for JS utility functions