summaryrefslogtreecommitdiffstats
path: root/apps/files/js/navigation.js
Commit message (Collapse)AuthorAgeFilesLines
* Closes "New" dropdown when switching categoryMorris Jobke2015-05-191-1/+1
| | | | | * fixes #16394 * return false - stops all following event callbacks
* Improved Javascript docs for JSDocVincent Petry2014-10-311-0/+11
| | | | | | Added namespaces so that JSDoc can find them. Fixed a few warnings. Improved some comments.
* Use active instead of hover for active sidebar optionJoas Schilling2014-06-031-2/+2
| | | | Fix #8720
* Fixed many issues, clean upVincent Petry2014-05-151-3/+18
| | | | | | | | | | | | | | | - 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-6/+32
| | | | | | | | | | | | | | | | | - 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
* Files app navigation can now switchVincent Petry2014-05-151-0/+81
- added new OCA.Files namespace for files classes - the sidebar can now switch between views/containers - the trashbin renders in its own container but currently doesn't work due to overrides - added app.js as entry point for JS code (ideally all other files should only contain classes and not trigger anything)