summaryrefslogtreecommitdiffstats
path: root/settings
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2018-02-0974-8734/+12
|
* [tx-robot] updated from transifexNextcloud bot2018-02-09120-124/+132
|
* Merge pull request #8264 from nextcloud/fix_dev_man_link_13Roeland Jago Douma2018-02-081-1/+1
|\ | | | | [stable13] Link to NC13 dev manual
| * [stable13] Link to NC13 dev manualRoeland Jago Douma2018-02-081-1/+1
| | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | Remove invalid link to documentationMorris Jobke2018-02-081-1/+0
|/ | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* [tx-robot] updated from transifexNextcloud bot2018-02-082-0/+12
|
* [tx-robot] updated from transifexNextcloud bot2018-02-0718-18/+54
|
* [tx-robot] updated from transifexNextcloud bot2018-02-074-2/+102
|
* [tx-robot] updated from transifexNextcloud bot2018-02-064-24/+162
|
* [tx-robot] updated from transifexNextcloud bot2018-02-044-6/+34
|
* [tx-robot] updated from transifexNextcloud bot2018-02-0316-50/+562
|
* [tx-robot] updated from transifexNextcloud bot2018-02-026-6/+200
|
* [tx-robot] updated from transifexNextcloud bot2018-02-01164-8748/+164
|
* [tx-robot] updated from transifexNextcloud bot2018-01-292-46/+46
|
* [tx-robot] updated from transifexNextcloud bot2018-01-232-0/+14
|
* Properly catch InvalidTokenException for better error responseMorris Jobke2018-01-181-2/+10
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* [tx-robot] updated from transifexNextcloud bot2018-01-172-0/+12
|
* [tx-robot] updated from transifexNextcloud bot2018-01-168-6/+32
|
* 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-113-49/+35
| | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | [tx-robot] updated from transifexNextcloud bot2018-01-102-0/+12
| |
* | [tx-robot] updated from transifexNextcloud bot2018-01-096-0/+30
| |
* | [tx-robot] updated from transifexNextcloud bot2018-01-072-0/+12
| |
* | [tx-robot] updated from transifexNextcloud bot2018-01-0610-8/+162
|/
* [tx-robot] updated from transifexNextcloud bot2018-01-0518-0/+108
|
* [tx-robot] updated from transifexNextcloud bot2018-01-04146-716/+1642
|
* Fix height of table rows in apps management on IE11Julius Härtl2018-01-031-0/+1
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Fix icon rendering in apps management for IE11Julius Härtl2018-01-032-6/+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>
* Merge pull request #7583 from nextcloud/comradekingu-patch-1Morris Jobke2018-01-021-6/+6
|\ | | | | Spelling: No ...., upgrades and email.
| * 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
| |
* | Get correct translations for SecurityProviderRoeland Jago Douma2018-01-021-1/+1
|/ | | | | | Fixes #7657 Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* 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>
* Also replace all other occurencesMorris Jobke2017-12-181-2/+2
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Add warning regarding freetype supportRoeland Jago Douma2017-12-131-0/+9
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* [tx-robot] updated from transifexNextcloud bot2017-12-114-114/+298
|
* [tx-robot] updated from transifexNextcloud bot2017-12-102-0/+4
|
* [tx-robot] updated from transifexNextcloud bot2017-12-092-10/+228
|
* Merge pull request #7390 from nextcloud/update-php-infoMorris Jobke2017-12-081-1/+1
|\ | | | | Show hint that PHP 5.6 will not be supported in Nextcloud 14 anymore
| * Show hint that PHP 5.6 will not be supported in Nextcloud 14 anymoreMorris Jobke2017-12-081-1/+1
| | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | [tx-robot] updated from transifexNextcloud bot2017-12-072-0/+26
| |
* | [tx-robot] updated from transifexNextcloud bot2017-12-052-40/+40
|/
* [tx-robot] updated from transifexNextcloud bot2017-12-0128-0/+140
|
* 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>
* [tx-robot] updated from transifexNextcloud bot2017-11-302-2/+2
|