summaryrefslogtreecommitdiffstats
path: root/core/js
Commit message (Collapse)AuthorAgeFilesLines
* Bump style-loader from 0.23.1 to 1.0.0dependabot-preview[bot]2019-08-118-42/+42
| | | | | | | | | | Bumps [style-loader](https://github.com/webpack-contrib/style-loader) from 0.23.1 to 1.0.0. - [Release notes](https://github.com/webpack-contrib/style-loader/releases) - [Changelog](https://github.com/webpack-contrib/style-loader/blob/master/CHANGELOG.md) - [Commits](https://github.com/webpack-contrib/style-loader/compare/v0.23.1...v1.0.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* Bump css-loader from 3.1.0 to 3.2.0dependabot-preview[bot]2019-08-112-2/+2
| | | | | | | | | | Bumps [css-loader](https://github.com/webpack-contrib/css-loader) from 3.1.0 to 3.2.0. - [Release notes](https://github.com/webpack-contrib/css-loader/releases) - [Changelog](https://github.com/webpack-contrib/css-loader/blob/master/CHANGELOG.md) - [Commits](https://github.com/webpack-contrib/css-loader/compare/v3.1.0...v3.2.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* Bump blueimp-md5 from 2.11.0 to 2.11.1dependabot-preview[bot]2019-08-111-1/+1
| | | | | | | | | Bumps [blueimp-md5](https://github.com/blueimp/JavaScript-MD5) from 2.11.0 to 2.11.1. - [Release notes](https://github.com/blueimp/JavaScript-MD5/releases) - [Commits](https://github.com/blueimp/JavaScript-MD5/compare/v2.11.0...v2.11.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* Fix ie app menu loading clickJohn Molakvoæ (skjnldsv)2019-08-062-2/+2
| | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* Bump webpack from 4.38.0 to 4.39.1dependabot-preview[bot]2019-08-048-35/+35
| | | | | | | | | Bumps [webpack](https://github.com/webpack/webpack) from 4.38.0 to 4.39.1. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v4.38.0...v4.39.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* Move actual password reset to vueJulius Härtl2019-07-316-41/+41
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Add unit tests for "OC.Notification.hide()"Daniel Calviño Sánchez2019-07-261-0/+56
| | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* Fix default timeouts in OC.NotificationDaniel Calviño Sánchez2019-07-267-10/+36
| | | | | | | | | | | | | | | | | | | | | | When no timeout was given "show()" used the default timeout of "OCP.Toast", which is 7 seconds instead of indefinitely as stated in the documentation of "show()". "showHtml()" should also indefinitely show the notification if no timeout is given, but due to the strict comparison the notification was indefinitely shown only when a timeout of 0 was explicitly given. Now both methods show the notification indefinitely (or until it is explicitly hidden) when no timeout is given. The unit tests did not catch this error because "showHtml()" had no tests (as before the move to Toastify it was called from "show()" and thus implicitly tested), and because "show()" verified that "hide()" was not called after some time; "hide()" is no longer called from "show()" since "OCP.Toast" is used internally, so the test always passed even if the notification was indeed hidden. Now the test is based on whether the element is found or not, and explicit tests were added too for "showHtml()". Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* Fix mixed test for "show" and "showTemporary"Daniel Calviño Sánchez2019-07-261-1/+19
| | | | | | | | "showTemporary()" when a timeout was given was being tested along with the "show()" tests; now there are two separate tests when a timeout is given, one for "showTemporary()" and one for "show()". Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* Check number of elements instead of if the jQuery object is definedDaniel Calviño Sánchez2019-07-261-4/+4
| | | | | | | | Tje jQuery object created through "$('#testArea .toastify')" will be always defined even if no elements were found, so the check does not really work; instead, it should be checked the number of elements found. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* Bump blueimp-md5 from 2.10.0 to 2.11.0dependabot-preview[bot]2019-07-211-1/+1
| | | | | | | | | Bumps [blueimp-md5](https://github.com/blueimp/JavaScript-MD5) from 2.10.0 to 2.11.0. - [Release notes](https://github.com/blueimp/JavaScript-MD5/releases) - [Commits](https://github.com/blueimp/JavaScript-MD5/compare/v2.10.0...v2.11.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* Rename parameter in OCP.Toast for consistency with OC.NotificationDaniel Calviño Sánchez2019-07-127-13/+18
| | | | | | | | This fixes HTML messages in "OC.Notification.showTemporary" (as "showHtml" was not set based on "isHTML"), and also makes OCP.Toast to keep the old OC.Notification API when used directly. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* Merge pull request #15881 from PhieF/toggle-password-loginRoeland Jago Douma2019-07-092-2/+2
|\ | | | | adding toggle password to be able to see it when login
| * adding toggle password to be able to see itPhie2019-07-092-2/+2
| | | | | | | | Signed-off-by: Phie <phie@phie.ovh>
* | Bump marked to 0.7.0Roeland Jago Douma2019-07-092-2/+2
|/ | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Bump webpack from 4.35.0 to 4.35.2dependabot-preview[bot]2019-07-086-36/+36
| | | | | | | | | Bumps [webpack](https://github.com/webpack/webpack) from 4.35.0 to 4.35.2. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v4.35.0...v4.35.2) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* Update core/src/components/login/ResetPassword.vueAkshala Bhatnagar2019-07-072-2/+2
| | | | Co-Authored-By: Julius Härtl <jus@bitgrid.net>
* Bump toastify-js from 1.5.0 to 1.6.1dependabot-preview[bot]2019-07-016-9/+9
| | | | | | | | | | Bumps [toastify-js](https://github.com/apvarun/toastify-js) from 1.5.0 to 1.6.1. - [Release notes](https://github.com/apvarun/toastify-js/releases) - [Changelog](https://github.com/apvarun/toastify-js/blob/master/CHANGELOG.md) - [Commits](https://github.com/apvarun/toastify-js/compare/1.5.0...1.6.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* Merge pull request #16070 from nextcloud/fix/setup-check-no-internet-no-errorRoeland Jago Douma2019-06-282-18/+18
|\ | | | | Do not show a internet connectivity warning if internet access is dis…
| * Do not show a internet connectivity warning if internet access is disabledChristoph Wurst2019-06-272-18/+18
| | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | Show contacts app mgmt link in contacts menuChristoph Wurst2019-06-276-13/+13
| | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | Fix js l10n registration to also work with more than one bundleChristoph Wurst2019-06-267-8/+71
| | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | Merge pull request #15859 from nextcloud/deprecate/oc-redirect-reloadRoeland Jago Douma2019-06-263-3/+3
|\ \ | | | | | | Deprecate window.location wrappers for redirect and reload
| * | Deprecate window.location wrappers for redirect and reloadChristoph Wurst2019-06-253-3/+3
| | | | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | | Merge pull request #16055 from nextcloud/design/native-fontsJan-Christoph Borchardt2019-06-261-2/+2
|\ \ \ | |/ / |/| | Use native font stack
| * | Move font from Nunito to Noto SansJan-Christoph Borchardt2019-06-221-2/+2
| | | | | | | | | | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
* | | Bump css-loader from 2.1.1 to 3.0.0dependabot-preview[bot]2019-06-256-7/+7
| |/ |/| | | | | | | | | | | | | | | | | Bumps [css-loader](https://github.com/webpack-contrib/css-loader) from 2.1.1 to 3.0.0. - [Release notes](https://github.com/webpack-contrib/css-loader/releases) - [Changelog](https://github.com/webpack-contrib/css-loader/blob/master/CHANGELOG.md) - [Commits](https://github.com/webpack-contrib/css-loader/compare/v2.1.1...v3.0.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | Bump dompurify from 1.0.10 to 1.0.11dependabot-preview[bot]2019-06-242-15/+15
|/ | | | | | | | | Bumps [dompurify](https://github.com/cure53/DOMPurify) from 1.0.10 to 1.0.11. - [Release notes](https://github.com/cure53/DOMPurify/releases) - [Commits](https://github.com/cure53/DOMPurify/compare/1.0.10...1.0.11) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Compiling assetsnpmbuildbot[bot]2019-06-172-2/+2
| | | | Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* Remove auto focus of share input field on dialog open, fix #15261Jan-Christoph Borchardt2019-06-141-6/+0
| | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
* Bump bundlesJulius Härtl2019-06-111-1/+1
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Bump bundlesJulius Härtl2019-06-076-41/+65
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Adjust jsunit tests for new toast libraryJulius Härtl2019-06-072-104/+45
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Bump nextcloud-axios from 0.1.3 to 0.2.0dependabot-preview[bot]2019-06-036-32/+32
| | | | | | | | Bumps [nextcloud-axios](https://github.com/ChristophWurst/nextcloud-axios) from 0.1.3 to 0.2.0. - [Release notes](https://github.com/ChristophWurst/nextcloud-axios/releases) - [Commits](https://github.com/ChristophWurst/nextcloud-axios/compare/v0.1.3...v0.2.0) Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* [Security] Bump axios from 0.18.0 to 0.18.1dependabot-preview[bot]2019-06-0210-32/+28
| | | | | | | Bumps [axios](https://github.com/axios/axios) from 0.18.0 to 0.18.1. **This update includes security fixes.** - [Release notes](https://github.com/axios/axios/releases) - [Changelog](https://github.com/axios/axios/blob/v0.18.1/CHANGELOG.md) - [Commits](https://github.com/axios/axios/compare/v0.18.0...v0.18.1)
* CSS: adjust media query breakpoint to improve tablet readabilitynacho2019-05-306-2/+6
| | | | see https://github.com/nextcloud/news/pull/467
* Merge pull request #15716 from nextcloud/enhancement/webpack/global-configRoeland Jago Douma2019-05-296-37/+37
|\ | | | | Unify webpack config
| * Build and updateJohn Molakvoæ (skjnldsv)2019-05-296-37/+37
| | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* | Merge pull request #15790 from nextcloud/fix/noid/recommendations-undef-varRoeland Jago Douma2019-05-293-18/+3
|\ \ | |/ |/| remove unncessary code block in share recommendations, fixed undefined var error
| * fixes usage of an undefined varArthur Schiwon2019-05-293-18/+3
| | | | | | | | | | | | | | and removes a unnecessary code block as there is no paging for share recommendations Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | Vueify the login pageChristoph Wurst2019-05-296-112/+70
|/ | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Bump webpack from 4.31.0 to 4.32.2dependabot-preview[bot]2019-05-276-8/+8
| | | | | | | | Bumps [webpack](https://github.com/webpack/webpack) from 4.31.0 to 4.32.2. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v4.31.0...v4.32.2) Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* dont use deprecated oc_config in url generationRobin Appelman2019-05-206-6/+6
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* Migrate the maintenance script to a modern module and bundleChristoph Wurst2019-05-167-57/+353
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Remove empty js.jsChristoph Wurst2019-05-153-11/+0
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Move legacy Ajax error handling logic to the bundleChristoph Wurst2019-05-155-141/+15
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Move OC.appSettings to the bundle and deprecate itChristoph Wurst2019-05-145-104/+87
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Merge pull request #15531 from nextcloud/refactor/remove-js-js-ocpRoeland Jago Douma2019-05-141-3/+0
|\ | | | | Remove OCP (re)declaration from js.js
| * Remove OCP (re)declaration from js.jsChristoph Wurst2019-05-141-3/+0
| | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | Move query string helpers to the bundleChristoph Wurst2019-05-145-126/+97
|/ | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>