| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
Page size calculation based on real page height
|
| | |
|
| |
| |
| | |
That is why we use `this.$el.parent()` instead
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| | |
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,
|
|/
|
|
|
|
| |
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.
|
| |
|
| |
|
|\
| |
| | |
Adding link to ellipsis and fixing styling
|
| | |
|
|\ \
| | |
| | | |
Fixed JS sort comparator to be consistent between JS and PHP
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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()
|
| |/
|/|
| |
| | |
Path will only be shown if in subdirectory, not in root.
|
|\ \
| | |
| | | |
Scroll to file on search or add
|
| | |
| | |
| | |
| | |
| | | |
When creating a new file from the menu, the list now scrolls to that
file.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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.
|
|/ /
| |
| |
| |
| |
| |
| |
| | |
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.
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| | |
Updating Usages
Removing unused method
Adding JS Doc
|
| | |
|
| |
| |
| |
| |
| | |
Since the server doesn't support sorting, use client side sort directly
instead of calling reload() first.
|
|\ \
| | |
| | | |
Compare upload limit against biggest file
|
| | |
| | |
| | |
| | |
| | | |
When uploading multiple files from the web interface, compare the PHP
upload limit against the largest file, not against the sum of all files.
|
|\ \ \
| |/ /
|/| | |
file actions improved error handling
|
| |/ |
|
|/ |
|
| |
|
|\
| |
| | |
[OC 7] Fix preview animation on uploading
|
| |
| |
| |
| |
| | |
When adding/uploading files, the preview is now animated.
When loading a list of files directly the preview is displayed directly.
|
|\ \
| |/
|/| |
Fix #8819 sorting
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Added mountType attribute for files/folder to indicated whether they are
regular, external or shared.
The client side then adapts the "Delete" action hint text based on this
information.
Only the mount roots must have the delete icon hint adapted.
To make this detectable on the client side, the mountType can now
be null, "shared", "shared-root", "external" or "external-root".
This also gives room to icon customization on the client side.
|
|/
|
|
|
|
|
|
|
| |
Whenever an app needs to register an event late, it does that on the
original file actions object.
Since the file actions that the file list work on is a merged list, not
the original one, the registration event needs to be propagated there as
well.
|
|\
| |
| | |
Reload the page when the files app encounters an authentication error
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Reload the files app in case of authentication errors, expired tokens or disabled app
Reloading will triger the full server side handeling of those errors
formatting
fix missing semicolon + some jshint warnings
|
|\ \
| |/
|/| |
Fix reload call for all subclasses
|
| |
| |
| |
| | |
All subclasses must also properly return the ajax call object.
|
|/
|
|
|
|
| |
When merging FileActions, the register() functio needs to correctly
override the previously merged action handler without affecting the
original one.
|
| |
|
|\
| |
| | |
shade color for modified dates again, fix #9363
|
| | |
|
| | |
|
|\ \
| |/
|/| |
Handle storages not being available in webui and webdav
|