aboutsummaryrefslogtreecommitdiffstats
path: root/settings/js
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #7709 from ↵Morris Jobke2018-01-111-0/+1
|\ | | | | | | | | nextcloud/fix-password-displayed-as-username-in-password-manager Fix password displayed as username in Firefox password manager dialog
| * Add strengthify bar after plain text input clone of password inputDaniel Calviño Sánchez2018-01-111-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To show the password in plain text "showPassword" adds a text input after the password input and swaps their visibility depending on whether the password has to be shown in plain text or not. In a similar way, "strengthify" by default adds the strength bar after the input element it was called on. Due to this, if "showPassword" is called before "strengthify" on the same password input then the strength bar ends between the password input and the text input, and when the text input is shown it appears below the strength bar. To fix this now the strength bar is added after the text input in those places in which "strengthify" was called after "showPassword" on the same element. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | Fix popover and styling in user managementJulius Härtl2018-01-111-9/+2
|/ | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Fix icon rendering in apps management for IE11Julius Härtl2018-01-031-3/+4
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Invert app icons on IE11 as wellJulius Härtl2018-01-031-18/+23
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Close menu on "mouseup" instead of on "click" events in the documentDaniel Calviño Sánchez2018-01-031-1/+1
| | | | | | | | | | | | | | | | "click" events are handled by several elements in user settings, and some of them (like the edit icon in the user name) stop the propagation of the event. Due to this the event never reaches the document and thus the menu was not closed in those cases. "click" events are always preceded by "mouseup" events (as "click" events are generated when "mousedown" and "mouseup" events occur in the same element), so now the menu is closed when a "mouseup" is received in the document. The described problem would happen too if an element stopped the propagation of the "mouseup" event; currently no element does that in the user settings, so now the menu is always closed as expected. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* Fix popover menu not closing in user settingsDaniel Calviño Sánchez2018-01-031-0/+1
| | | | | | | | | | | A popover menu is displayed when its element has the "open" CSS class. That class is added when clicking on the menu toggle, but it was removed only when clicking again on the toggle, so the popover menu in user settings could be closed only by clicking again on the menu toggle. Now the "open" CSS class is removed too when clicking on the body, either directly or through event propagation. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* Fix mail attributeRoeland Jago Douma2018-01-021-2/+2
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Spelling: No ...., upgrades and email.Allan Nordhøy2018-01-021-8/+8
|
* Hide delete button if the avatar is a generated oneJulius Härtl2017-12-191-2/+4
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Update avatar on displayname changeRoeland Jago Douma2017-12-191-1/+7
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Fix translation of federation scope menuMorris Jobke2017-11-301-6/+6
| | | | | | | | * l10n in Nextcloud works by extracting the values only passed on their location and not based on the first parameter * we need to change the translation pool from `core` to `settings` then * fixes #7345 Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Merge pull request #6848 from nextcloud/user-app-nav-to-css-guidelinesJohn Molakvoæ2017-10-231-8/+5
|\ | | | | User settings app-navigation to css guidelines
| * Fix deletion feedbackJohn Molakvoæ (skjnldsv)2017-10-211-1/+1
| | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * Fix editing form visibilityJohn Molakvoæ (skjnldsv)2017-10-211-1/+1
| | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * Edit form to guidelinesJohn Molakvoæ (skjnldsv)2017-10-211-6/+3
| | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* | Allow quota of 0 againJoas Schilling2017-10-191-1/+1
|/ | | | | | Regression from f1fccaca0605a5d183f78b2c39d2e09a54753787 Signed-off-by: Joas Schilling <coding@schilljs.com>
* Fix popover position and avatar loadingJohn Molakvoæ (skjnldsv)2017-10-141-1/+2
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* App management: Do not show udpdate category if no updates are availableJulius Härtl2017-10-101-3/+30
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* App management: Show proper message when no updates are availableJulius Härtl2017-10-101-5/+30
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* App management: do not reset update counter to 0 on category changeJulius Härtl2017-10-101-1/+0
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* App management: add update sectionJulius Härtl2017-10-101-13/+13
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Merge pull request #6750 from nextcloud/fix-language-when-setting-passwordJoas Schilling2017-10-041-8/+8
|\ | | | | Fix language when trying to change password
| * Fix language when trying to change passwordJoas Schilling2017-10-041-8/+8
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | App management: add update availability to sortingJulius Härtl2017-10-031-2/+4
|/ | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Popover to css guidelinesJohn Molakvoæ (skjnldsv)2017-09-281-0/+3
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Fix testsJohn Molakvoæ (skjnldsv)2017-09-281-1/+1
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Quota bar fix on user listJohn Molakvoæ (skjnldsv)2017-09-271-1/+6
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* No js for popover positionningJohn Molakvoæ (skjnldsv)2017-09-271-10/+0
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Fix typoJohn Molakvoæ (skjnldsv)2017-09-251-2/+2
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Icons & default classesJohn Molakvoæ (skjnldsv)2017-09-241-4/+4
| | | | | | Changed categories order same as app store Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Set the displayname for the avatar in the personal infoJoas Schilling2017-09-201-7/+9
| | | | | | Otherwise the color used is different Signed-off-by: Joas Schilling <coding@schilljs.com>
* Sort apps by enabled/disabled but not by official/in-appstore in App ManagementChon Kou2017-09-101-5/+1
| | | | Signed-off-by: Chon Kou <k.kou@alumni.ubc.ca>
* Use correct l10n for app password menuMorris Jobke2017-08-211-2/+2
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Fix federation scope dropdownMorris Jobke2017-08-141-1/+1
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* display error icon on non-successMaxence Lange2017-08-081-3/+14
| | | | Signed-off-by: Maxence Lange <maxence@nextcloud.com>
* Merge branch 'master' into clean-settings-layoutMorris Jobke2017-08-041-2/+2
|\
| * Revert "Proof of concept #5593 - inline SVG icon for icon-contacts"Joas Schilling2017-08-031-2/+2
| |
* | Merge branch 'master' into clean-settings-layoutMorris Jobke2017-08-033-5/+5
|\|
| * Proof of concept #5593 - inline SVG icon for icon-contactsMarin Treselj2017-08-021-2/+2
| | | | | | | | Signed-off-by: Marin Treselj <marin@pixelipo.com>
| * Fix show password button for password changeMorris Jobke2017-07-261-1/+1
| | | | | | | | | | | | | | | | * fix the show password button on the personal page * before: if the password change failed the show password icon was not shown again * after: show password icon is visible Signed-off-by: Morris Jobke <hey@morrisjobke.de>
| * : BigversalAllan Nordhøy2017-07-181-2/+2
| |
* | Merge branch 'clean-settings-layout' of ↵Andreas Jacobsen2017-07-244-161/+163
|\| | | | | | | https://github.com/andreasjacobsen93/server into clean-settings-layout
| * Enable the toggleSelect extension in multi-select dropdownsDaniel Calviño Sánchez2017-07-101-0/+1
| | | | | | | | | | | | | | | | The toggleSelect extension for Select2 makes possible to unselect items in a multi-select dropdown by clicking on them; this behaviour should be enabled in all the multi-select dropdowns used in the server. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * Merge pull request #5342 from nextcloud/userlist-used-spaceMorris Jobke2017-07-051-116/+154
| |\ | | | | | | show used space in user list
| | * show used space in user listRobin Appelman2017-06-151-116/+154
| | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * | adapt to force language changesArthur Schiwon2017-06-231-15/+23
| | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * | remove obsolete filesArthur Schiwon2017-06-231-444/+0
| | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * | take over app passwordsArthur Schiwon2017-06-231-0/+0
| | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * | convert Sessions sectionArthur Schiwon2017-06-231-0/+7
| | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>