summaryrefslogtreecommitdiffstats
path: root/core/js/js.js
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #13771 from owncloud/fix-humanfileSizeLukas Reschke2015-02-121-1/+1
|\ | | | | generate valid human readable text for 0
| * generate valid human readable text for 0 - fixed #9342Thomas Müller2015-01-291-1/+1
| |
* | Second parameter is optionalLukas Reschke2015-02-111-1/+1
|/ | | | Makes my IDE happier.
* adjust paths for searchMorris Jobke2015-01-141-1/+1
|
* Add timeout for notificationsMorris Jobke2015-01-081-0/+37
| | | | | | | | * options for timeout in seconds and if it contains HTML * if timeout is 0 it will show the message permanently * removes the notification after a given (default: 5 seconds) timeframe * based on work by @brantje * provide JS unit tests for notifications
* move search results below filelist, show hint when results are off screen, ↵Jörn Friedrich Dreyer2015-01-021-36/+1
| | | | use js plugin mechanism
* add paged providerJörn Friedrich Dreyer2015-01-021-1/+1
|
* move code from js.js to search.js in the search appJörn Friedrich Dreyer2015-01-021-58/+3
|
* new OC.Search, add search result formatters and handlers, use full content ↵Jörn Friedrich Dreyer2015-01-021-20/+57
| | | | width for results
* load showpassord.js conditionally in the template only if neededThomas Müller2014-12-161-29/+0
|
* Merge pull request #12360 from owncloud/files-tagsLukas Reschke2014-12-151-0/+19
|\ | | | | Add favorites to files app
| * Added favorites feature to the files appVincent Petry2014-12-151-0/+19
| |
* | Merge pull request #12555 from owncloud/app_specific_searchJörn Friedrich Dreyer2014-12-151-1/+8
|\ \ | |/ |/| introduce inApps[] filter for search via ajax query
| * introduce inApps[] filter for search via ajax query, make file results show ↵Jörn Friedrich Dreyer2014-12-101-1/+8
| | | | | | | | | | | | | | | | up in files app only use more flexible return type check array with !empty instead of count
* | Simple Plugin system for JavascriptVincent Petry2014-12-011-0/+81
|/
* Added function to load translations from JSVincent Petry2014-11-181-2/+22
| | | | | | For apps that support async translation loading, a new function OC.L10N.load() can be used to asynchronously load the translations for a given app.
* Improved Javascript docs for JSDocVincent Petry2014-10-311-7/+35
| | | | | | Added namespaces so that JSDoc can find them. Fixed a few warnings. Improved some comments.
* Include core translationsVincent Petry2014-10-291-9/+0
| | | | | | | | | | | | | Moved search result type translations to search.js Load JS translations earlier Translations need to be loaded earlier to make sure that some JS files like search.js get access to translations at this time. This requires the template initialization to be moved to after session initialization, because only after the session we have access to the current language.
* Added OC.L10N namespace with translation functionsVincent Petry2014-10-291-119/+6
| | | | | | | | | | | Added addTranslations and fixed de.js file Fixed de.js to use OC.L10N.register() and use to correct expected format. Added JS unit tests for OC.L10N class Include translations JS script for all apps
* Setting moment locale based on user selectionClark Tomlinson2014-10-231-0/+6
|
* make sure that the notification gets shown again after a second tryBjoern Schiessle2014-10-071-32/+37
|
* Moved WebDAV and internet checks to client side JSVincent Petry2014-09-231-0/+1
| | | | | | | - Added setup checks in JavaScript - Moved isWebDAVWorking to JS using SetupChecks - Moved internet connection checks to an ajax call that goes through the server
* Merge pull request #7254 from owncloud/core-sortalgoLukas Reschke2014-09-161-1/+51
|\ | | | | Fixed JS sort comparator to be consistent between JS and PHP
| * Fixed sort algo for additional casesVincent Petry2014-08-111-1/+3
| |
| * Fixed file list sortingVincent Petry2014-08-111-1/+49
| | | | | | | | | | | | | | | | | | | | | | | | | | 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/+1
| | | | | | | | Path will only be shown if in subdirectory, not in root.
* | Merge pull request #9753 from owncloud/filepath-cssThomas Müller2014-09-091-1/+1
|\ \ | | | | | | Remove special case for css in OC.filePath
| * | Remove special case for css in OC.filePathRobin Appelman2014-07-211-1/+1
| | |
* | | Use a route instead of s.php and convert tokens asapkondou2014-09-041-0/+1
| | |
* | | Merge pull request #10637 from owncloud/fixing-js-issuesThomas Müller2014-08-291-0/+1
|\ \ \ | | | | | | | | Init vars with a value if none is provided
| * | | Init vars with a value if none is providedClark Tomlinson2014-08-281-0/+1
| | |/ | |/|
* / | Implementing moment.jsClark Tomlinson2014-08-281-27/+26
|/ / | | | | | | | | | | | | | | Updating Usages Removing unused method Adding JS Doc
* | fix yellow notification styleJan-Christoph Borchardt2014-07-301-2/+2
| |
* | Fix enforced share expiration date to be based on share timeVincent Petry2014-07-211-0/+12
|/
* debounce the search functionRobin Appelman2014-07-081-2/+2
|
* fix loading spinner on ctrl click a app entry- fixes #9063Morris Jobke2014-07-071-1/+3
|
* Fix parsing URL hash when no "?" was specifiedVincent Petry2014-06-251-0/+4
|
* Added max heartbeat interval to prevent integer overflowVincent Petry2014-06-121-0/+5
| | | | | | | | | | When using big session timeout values, the interval value might overflow and cause the setInterval() call to ping the server in a loop without any delay. This fix adds a maximum ping interval of 24 hours. Forward port of 00ec5fc1935c946e846a8ff28491e5b5b017b3d7 from stable6.
* Disable snapper init for IE <= 9Vincent Petry2014-06-101-1/+1
| | | | | | | Snapper doesn't work at all for IE8 and IE9 and messes up with the main container layout when enabled. This commits disables snapper for these browsers.
* Merge pull request #8922 from owncloud/design-controls-transparencyJan-Christoph Borchardt2014-06-061-1/+1
|\ | | | | Bugfixes for mobile
| * fix apps without app-navigationJan-Christoph Borchardt2014-06-061-1/+1
| |
* | Merge pull request #4553 from owncloud/update_search_classesVincent Petry2014-06-061-0/+7
|\ \ | |/ |/| Update search classes
| * allow apps to add translation for search result typeidJörn Friedrich Dreyer2014-06-061-0/+7
| |
* | Added debounce on resizeVincent Petry2014-06-061-1/+1
| |
* | Disable snapper on bigger screens and on public/login pageMorris Jobke2014-06-061-33/+52
| |
* | slightly widen sidebar to 250px, works better with apps and on mobileJan-Christoph Borchardt2014-06-051-1/+1
| |
* | close sidebar when switching navigation entry, except on add or change settingsJan-Christoph Borchardt2014-06-051-0/+20
| |
* | add app sidebar toggle and swipe on mobileJan-Christoph Borchardt2014-06-051-0/+15
|/
* better loading feedback for app start, move from JS to CSSJan-Christoph Borchardt2014-06-041-1/+1
|
* show loading feedbackJan-Christoph Borchardt2014-06-041-2/+10
|