aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/js
Commit message (Collapse)AuthorAgeFilesLines
* keep spaces out of translationVolkan Gezer2015-01-111-2/+2
| | | | otherwise translators cannot notice it on Transifex
* Don't double encode stringLukas Reschke2015-01-101-1/+1
| | | | | | We already use `.text()` here which automatically properly encodes the string. Thus the string will be double-encoded and look ugly. (i.e. when you search for ">" you will see "No results found for >") Fixes itself.
* Merge pull request #12687 from owncloud/auto-escape-t-placeholdersMorris Jobke2015-01-071-1/+1
|\ | | | | Auto escape t placeholders
| * Autoescape of placeholders in t() and p() - for JSMorris Jobke2015-01-071-1/+1
| | | | | | | | | | | | | | * add disableEscape parameter to disable this functionality * drop usage of escapeHTML() that is now done inside t() * add unit test for escaped and not escaped placeholder * proper JSDoc
* | use class for no results div instead of id. the elements are not unique.Jörn Friedrich Dreyer2015-01-062-4/+4
| |
* | clear search when navigating via breadcrumbsJörn Friedrich Dreyer2015-01-061-0/+1
| |
* | correctly clear searchbox when switching filelistsJörn Friedrich Dreyer2015-01-051-0/+3
| |
* | fix onScroll breaking search, fix keyboard navigation, fix filter for files ↵Jörn Friedrich Dreyer2015-01-051-1/+6
| | | | | | | | in other dirs
* | filter trashbin and share viewsJörn Friedrich Dreyer2015-01-052-7/+24
| |
* | delay hiding no results message until search is triggeredJörn Friedrich Dreyer2015-01-021-1/+4
| |
* | use " to avoid escaping 'Jörn Friedrich Dreyer2015-01-021-1/+1
| |
* | correctly update search results when query is changed, show spinner when ↵Jörn Friedrich Dreyer2015-01-021-2/+5
| | | | | | | | searching
* | show no files found messageJörn Friedrich Dreyer2015-01-022-0/+13
| |
* | make OCA.Search.Files available in tests and for other appsJörn Friedrich Dreyer2015-01-021-0/+1
| |
* | Fix rendering search resultsRobin Appelman2015-01-021-6/+13
| |
* | fix countJörn Friedrich Dreyer2015-01-021-1/+1
| |
* | use correct visibilitiesJörn Friedrich Dreyer2015-01-021-101/+111
| |
* | fix js testsJörn Friedrich Dreyer2015-01-021-8/+13
| |
* | instantiate file searchJörn Friedrich Dreyer2015-01-021-19/+20
| |
* | don't use full class name to register pluginJörn Friedrich Dreyer2015-01-021-8/+21
| |
* | allow getting the last queryJörn Friedrich Dreyer2015-01-021-24/+22
| |
* | hide irrelevant stuff in empty filelistJörn Friedrich Dreyer2015-01-021-3/+5
| |
* | show audio icon & image previewsJörn Friedrich Dreyer2015-01-021-18/+16
| |
* | hide header when no files in list matchJörn Friedrich Dreyer2015-01-023-8/+40
| |
* | filter new rowsJörn Friedrich Dreyer2015-01-022-17/+77
| |
* | move search results below filelist, show hint when results are off screen, ↵Jörn Friedrich Dreyer2015-01-022-11/+122
|/ | | | use js plugin mechanism
* Merge pull request #12941 from owncloud/wave-accessibility-complianceMorris Jobke2014-12-191-4/+9
|\ | | | | Wave accessibility compliance
| * properly escape variableJan-Christoph Borchardt2014-12-181-1/+1
| |
| * fix accessibility for 'New' file inputsJan-Christoph Borchardt2014-12-181-1/+6
| |
| * fix accessibility of file uploadJan-Christoph Borchardt2014-12-181-3/+3
| |
* | show spinner on file upload in IE8, 9Morris Jobke2014-12-181-0/+15
|/
* Merge pull request #12900 from owncloud/more-accessibilityThomas Müller2014-12-183-1/+6
|\ | | | | More accessibility fixes for Files
| * use method to only visually hide elements, show only for screen readerJan-Christoph Borchardt2014-12-172-2/+2
| |
| * fix Delete action text being translatableJan-Christoph Borchardt2014-12-171-1/+2
| |
| * add text to Delete actionJan-Christoph Borchardt2014-12-171-1/+2
| |
| * properly name form labels for the file selectionJan-Christoph Borchardt2014-12-171-0/+1
| |
| * fix alt text for breadcrumbs home iconJan-Christoph Borchardt2014-12-171-0/+2
| |
* | Propertly restore thumbnail on cancel/rename/moveVincent Petry2014-12-172-13/+17
|/ | | | | Since the thumbnail is now in a div, the code that tries to change the thumbnail have been adapted here as well.
* Fixed small code style issuesVincent Petry2014-12-151-2/+2
|
* Remove spinner when toggling file favoriteVincent Petry2014-12-151-9/+14
|
* Fixed has-favorites CSSVincent Petry2014-12-151-1/+1
|
* Use star icon for favoritesVincent Petry2014-12-151-10/+42
|
* Correctly replace favorites icon when re-rendering file actionsVincent Petry2014-12-151-1/+1
|
* Added favorites feature to the files appVincent Petry2014-12-154-0/+352
|
* 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