summaryrefslogtreecommitdiffstats
path: root/apps/files/js
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #12639 from owncloud/bad_mtime_formatMorris Jobke2014-12-131-3/+16
|\ | | | | Fix formatting of bad dates from external storages
| * Return ? if mtime is 0 or -1Robin McCorkell2014-12-121-3/+16
| | | | | | | | Tooltip contains 'Unable to determine date'. Fixes #6395
* | Merge pull request #12795 from owncloud/files-layoutchangesMorris Jobke2014-12-131-14/+27
|\ \ | | | | | | Move file thumbnail element into the label tag
| * | Replace input checkbox CSS selector with .electCheckBoxVincent Petry2014-12-111-7/+7
| | |
| * | Move file thumbnail into the label elementVincent Petry2014-12-111-8/+21
| | |
* | | Merge pull request #12527 from owncloud/js-pluginsystemRobin Appelman2014-12-121-0/+6
|\ \ \ | | | | | | | | Simple Plugin system for Javascript
| * | | Simple Plugin system for JavascriptVincent Petry2014-12-011-0/+6
| | | |
* | | | Merge pull request #12698 from owncloud/handle_readonly_shared_filesMorris Jobke2014-12-121-2/+13
|\ \ \ \ | |_|/ / |/| | | Handle readonly shared files
| * | | show readonly message in file conflict dialog, make it always selectedJörn Friedrich Dreyer2014-12-111-2/+13
| | |/ | |/|
* | | introduce alt text for rename icon - fixes #12067Morris Jobke2014-12-081-0/+1
| | |
* | | Merge pull request #12394 from owncloud/files-fileactionsimprovementsLukas Reschke2014-12-081-113/+238
|\ \ \ | |/ / |/| | Improve FileActions JS to allow for custom rendering
| * | Improve FileActions JS to allow for custom renderingVincent Petry2014-11-241-113/+238
| |/ | | | | | | | | | | | | | | | | | | This improves the OCA.Files.FileActions class to support passing a "render" function in the action object. The default function "_defaultRenderFunction" is used by default and renders actions in the usual actions container. Moved "Rename" and "Delete" to custom render functions.
* / Dont show the delete button for selected files if one of the selected files ↵Robin Appelman2014-11-261-2/+12
|/ | | | is not deletable
* Merge pull request #9177 from owncloud/jsdocexperimentVincent Petry2014-11-139-49/+204
|\ | | | | Improved JS Docs + added build script for JS Docs
| * Improved Javascript docs for JSDocVincent Petry2014-10-319-49/+204
| | | | | | | | | | | | Added namespaces so that JSDoc can find them. Fixed a few warnings. Improved some comments.
* | add alt text for file actions, but leave empty since text is directly next to itJan-Christoph Borchardt2014-11-061-1/+1
|/
* Merge pull request #11524 from nazar-pc/patch-1Vincent Petry2014-10-162-5/+7
|\ | | | | Page size calculation based on real page height
| * Even better - usage of this.$container instead of this.$el.parent()Nazar Mokrynskyi2014-10-151-1/+1
| |
| * this.$el is not the same as $('#app-content')Nazar Mokrynskyi2014-10-151-1/+1
| | | | | | That is why we use `this.$el.parent()` instead
| * Use function call for FileList.pageSizeNazar Mokrynskyi2014-10-151-1/+1
| |
| * Use this.$el instead of the absolute selectorNazar Mokrynskyi2014-10-151-1/+1
| |
| * Page size calculation based on real page heightNazar Mokrynskyi2014-10-111-4/+6
| | | | | | | | | | | | This is fix for https://github.com/owncloud/core/issues/10060 Instead of hard coding page size as 20 items, we check real page height, and divide by 50 (height of one row). This will allow to load fewer items on small screens and enough items on large screens (4k, portrait orientation, etc.). Also checking page height on every load to respond on browser window resizing,
* | Use body element when animating scroll in public pageVincent Petry2014-10-151-1/+7
|/ | | | | | In the public page the scroll container is the window instead of a div. The $(window) object doesn't support animating the scroll property, so the $('body') element is used instead.
* correct progress-icon to icon-loading-smallJan-Christoph Borchardt2014-09-221-3/+3
|
* correct delete-icon to icon-delete, fix #11128Jan-Christoph Borchardt2014-09-222-4/+4
|
* Merge pull request #10902 from owncloud/fix-ellepsisLukas Reschke2014-09-161-0/+2
|\ | | | | Adding link to ellipsis and fixing styling
| * Adding link to ellipsis and fixing stylingClark Tomlinson2014-09-161-0/+2
| |
* | Merge pull request #7254 from owncloud/core-sortalgoLukas Reschke2014-09-161-1/+1
|\ \ | | | | | | Fixed JS sort comparator to be consistent between JS and PHP
| * | Fixed file list sortingVincent Petry2014-08-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now using a natural sort algorithm that is more consistent between JS and PHP (although not perfect in some corner cases) - added OC.Util.naturalSortComparator that uses the same algo that was used for the user list - changed user list and files list to use OC.Util.naturalSortComparator - removed toLowerCase() and changed the comparator to use String.localeCompare() - added unit tests - added OC_NaturalSort that is used by OCP\Util::naturalSortCompare()
* | | Show original path information in trashbin and sharing viewsRobin McCorkell2014-09-111-0/+6
| |/ |/| | | | | Path will only be shown if in subdirectory, not in root.
* | Merge pull request #10860 from owncloud/scrolltofixClark Tomlinson2014-09-053-27/+46
|\ \ | | | | | | Scroll to file on search or add
| * | Scroll to new file/folder after addingVincent Petry2014-09-042-5/+10
| | | | | | | | | | | | | | | When creating a new file from the menu, the list now scrolls to that file.
| * | Fixed scrollto for search resultsVincent Petry2014-09-042-22/+36
| | | | | | | | | | | | | | | | | | | | | | | | Now passing the "scrollto" URL argument to the file list class which will also automatically scroll and highlight the matching element. This code is triggered by the search box when in a different folder and also by the activity app.
* | | Added permission check for drag and dropVincent Petry2014-09-042-1/+25
|/ / | | | | | | | | | | | | | | When dropping files onto a read-only folder, a notification is now shown instead of attempting to upload. This for both the drag for upload and drag from inside the file list cases.
* | Highlight every uploaded files and scroll down to the last onepdessauw2014-09-032-0/+58
| |
* | Implementing moment.jsClark Tomlinson2014-08-281-1/+1
| | | | | | | | | | | | | | | | Updating Usages Removing unused method Adding JS Doc
* | remove obsolete 'Download preparing' message for zip downloads, fix #3755Jan-Christoph Borchardt2014-08-191-1/+0
| |
* | Client side sort for sharing overviewVincent Petry2014-08-151-5/+21
| | | | | | | | | | Since the server doesn't support sorting, use client side sort directly instead of calling reload() first.
* | Merge pull request #10374 from ogasser/compare_upload_limit_against_biggest_fileJan-Christoph Borchardt2014-08-141-4/+7
|\ \ | | | | | | Compare upload limit against biggest file
| * | Compare upload limit against biggest fileOliver Gasser2014-08-121-4/+7
| | | | | | | | | | | | | | | When uploading multiple files from the web interface, compare the PHP upload limit against the largest file, not against the sum of all files.
* | | Merge pull request #10295 from owncloud/file_actions_error_handlingBjörn Schießle2014-08-141-0/+4
|\ \ \ | |/ / |/| | file actions improved error handling
| * | add error message if user wants to rename a file which no longer existsBjoern Schiessle2014-08-111-0/+4
| |/
* / Fix alert textVolkan Gezer2014-08-121-1/+1
|/
* trigger lazy loading earlier, fix #9823Jan-Christoph Borchardt2014-08-081-1/+1
|
* Merge pull request #9703 from owncloud/files-preview-animateMorris Jobke2014-07-241-2/+4
|\ | | | | [OC 7] Fix preview animation on uploading
| * Fix preview animation on uploadingVincent Petry2014-07-171-2/+4
| | | | | | | | | | When adding/uploading files, the preview is now animated. When loading a list of files directly the preview is displayed directly.
* | Merge pull request #9683 from owncloud/fix_#8819_sortingVincent Petry2014-07-221-4/+18
|\ \ | |/ |/| Fix #8819 sorting
| * Sorting triangles pointing up for ascending, down for descendingRemco Brenninkmeijer2014-07-211-2/+2
| |
| * Before I get spanked ;)Remco Brenninkmeijer2014-07-171-1/+1
| |
| * While busy cleaning, also removed extra entersRemco Brenninkmeijer2014-07-171-1/+0
| |