summaryrefslogtreecommitdiffstats
path: root/apps/files/templates/list.php
Commit message (Collapse)AuthorAgeFilesLines
* use class for no results div instead of id. the elements are not unique.Jörn Friedrich Dreyer2015-01-061-1/+1
|
* text and icon fixesJörn Friedrich Dreyer2015-01-021-2/+2
|
* show no files found messageJörn Friedrich Dreyer2015-01-021-0/+6
|
* get rid of unnecessary alt and title attributesJan-Christoph Borchardt2014-12-181-2/+2
|
* fix accessibility of file uploadJan-Christoph Borchardt2014-12-181-4/+8
|
* Merge pull request #12900 from owncloud/more-accessibilityThomas Müller2014-12-181-2/+5
|\ | | | | More accessibility fixes for Files
| * use method to only visually hide elements, show only for screen readerJan-Christoph Borchardt2014-12-171-1/+1
| |
| * add alt text to 'Cancel upload' buttonJan-Christoph Borchardt2014-12-171-1/+2
| |
| * properly name form labels for the file selectionJan-Christoph Borchardt2014-12-171-1/+3
| |
* | wording fix for Files app empty stateJan-Christoph Borchardt2014-12-171-1/+1
| |
* | improve empty state of 'All files'Jan-Christoph Borchardt2014-12-171-1/+5
|/
* change 'Cancel upload' text to x icon for more space in breadcrumbs barJan-Christoph Borchardt2014-06-301-3/+2
|
* drop allowZIPdownload and maxZIPSize as optionsMorris Jobke2014-06-021-8/+5
|
* fix typoVolkan Gezer2014-05-241-1/+1
| | | Suggested by [mnestis](https://www.transifex.com/accounts/profile/mnestis/) on transifex
* Fixed many issues, clean upVincent Petry2014-05-151-9/+12
| | | | | | | | | | | | | | | - fixed upload and storage statistics - fixed infinite scroll to use the correct contain for scroll detection - fixed unit test that sometimes fail for rename case - controls are now sticky again - fixed selection overlay to be aligned with the table - fixed "select all" checkbox that had id conflicts - fixed public page - fixed global actions permissions detection - fix when URL contains an invalid view id - viewer mode now hides the sidebar (ex: text editor) - added unit tests for trashbin - clean up storage info in template (most is retrieved via ajax call now)
* Namespacing for FileList, FileActions and trashbin appVincent Petry2014-05-151-0/+104
- 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