aboutsummaryrefslogtreecommitdiffstats
path: root/core/js/js.js
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
|
* Remove obsoleted code to trigger navigation menuVincent Petry2014-06-041-27/+6
| | | | | Now that the navigation menu is always togglable, the media query dependent code can be removed.
* toggle the navigation on desktop, not only on mobileJan-Christoph Borchardt2014-06-041-8/+2
|
* infield label removal: remove JS file and references to itJan-Christoph Borchardt2014-06-031-5/+0
|
* Merge pull request #7151 from owncloud/user-jqueryThomas Müller2014-06-031-0/+1
|\ | | | | Continuing the New User management
| * cleanupArthur Schiwon2014-06-021-1/+0
| |
| * refactor delete handling and apply it to users and groupsArthur Schiwon2014-06-021-0/+1
| |
| * add Last Login columnArthur Schiwon2014-06-021-0/+1
| |
* | Merge pull request #7485 from owncloud/scrutinizer_fix_1_kondouMorris Jobke2014-06-031-5/+9
|\ \ | | | | | | Scrutinizer cleanup
| * | Scrutinizer cleanupkondou2014-06-021-5/+9
| | |
* | | Merge pull request #8820 from owncloud/design-detailsFrank Karlitschek2014-06-021-7/+8
|\ \ \ | |/ / |/| | Design details
| * | add OC.menuSpeed to control the animation speed of menu toggleMorris Jobke2014-06-021-7/+8
| | |
| * | Adds Animation to Toggling Navigation on < 768px widthsraghunayyar2014-06-021-4/+4
| |/
* | Merge pull request #8613 from owncloud/filesize-alignmentMorris Jobke2014-06-021-1/+9
|\ \ | |/ |/| Improve aligment of file size
| * display "<1 kB" for really small filesMorris Jobke2014-06-021-1/+9
| | | | | | | | | | * added parameters for humanFileSize to trigger that behaviour * add unit tests for that
* | Merge pull request #8187 from owncloud/escape-more-characterMorris Jobke2014-06-021-1/+1
|\ \ | |/ |/| Also encode > and '
| * Also encode > and 'Lukas Reschke2014-04-131-1/+1
| |
* | Fix undefined JS on login/setup pageVincent Petry2014-05-301-3/+3
| |
* | Fix IE8 issue when icon is not definedVincent Petry2014-05-301-1/+1
| | | | | | | | | | | | | | Sometimes no icon file is passed to replaceSVGIcon(), it showed an error in IE8 and broke the code flow. This fix adds a check whether the file name is set.
* | Added sharing overview page (WIP)Vincent Petry2014-05-301-1/+10
| | | | | | | | | | - added sharing overview entries in the sidebar - use OCS Share API to get the list of files
* | Merge pull request #8727 from owncloud/upgrade-overviewLukas Reschke2014-05-291-0/+4
|\ \ | | | | | | Added update overview page
| * | Added update overview pageVincent Petry2014-05-271-0/+4
| | |
* | | Remove deprecated functionsLukas Reschke2014-05-291-33/+0
|/ / | | | | | | | | This functions have been deprecated since Oct 2012 (ownCloud 5), let's finally remove them for ownCloud 7. Ref https://github.com/owncloud/core/commit/c4b8bb10411a4d601b7f4c8758980005f14850ab
* | Namespacing for FileList, FileActions and trashbin appVincent Petry2014-05-151-0/+108
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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/+5
| | | | | | | | | | | | | | | | | | - 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)
* | Fix file selection for infinite scrollingVincent Petry2014-04-281-1/+1
| | | | | | | | | | | | | | - moved file selection code to FileList - fix selection summary when all files are selected - nextPage now auto-selects files if "select all" checkbox is checked - fixed trashbin to use the same selection logic as FileList
* | Fix file summary to use the whole file listVincent Petry2014-04-281-0/+3
| | | | | | | | | | | | - moved the summary code into a new class FileSummary - FileSummary is calculated only once, then updated with add/remove - added new OC.Util namespace for JS utility functions
* | Merge pull request #8213 from cbojar/masterThomas Müller2014-04-231-25/+19
|\ \ | | | | | | Clean up js.js along suggestions from scrutinizer-ci, fixes #8204.
| * | Clean up js.js along suggestions from scrutinizer-ci, fixes #8204.cbojar2014-04-161-26/+20
| |/ | | | | | | | | | | | | | | | | | | | | | | Also used JSHint.com to find a few other issues. -Strict comparisons (===) -Fixed regex escaping errors -Refactored OC.buildQueryString to use jQuery.map -Missing semicolons -Braces around if block Left some of the mixed spaces/tabs as they are for alignment in comments.
* | fixing typosThomas Müller2014-04-221-25/+24
| |
* | Fix JSDocLukas Reschke2014-04-211-9/+9
| |
* | Reuse selectorLukas Reschke2014-04-211-7/+9
| |
* | Use proper JSDoc documentationLukas Reschke2014-04-211-86/+231
|/
* Moved SVGSupport call to use OC.Util.SVGSupport()Vincent Petry2014-04-091-3/+3
|
* Moved code to replace svg with png to OC.UtilVincent Petry2014-04-041-32/+73
| | | | | | | | | - Moved code that replaces the "svg" extension for the given file to core as OC.Util.replaceSVGIcon. - Added unit test for OC.Util.replaceSVGIcon - Moved "replaceSVG" to OC.Util.replaceSVG and deprecated the global "replaceSVG" function. - Added alias for SVGSupport() as OC.Util.hasSVGSupport() (for now)