Browse Source

Allow emtpy values on personal page and fix saving checkmark position

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
tags/v11.0RC2
Christoph Wurst 7 years ago
parent
commit
b19b788e7a
No account linked to committer's email address
2 changed files with 4 additions and 1 deletions
  1. 3
    0
      settings/css/settings.css
  2. 1
    1
      settings/js/federationsettingsview.js

+ 3
- 0
settings/css/settings.css View File

@@ -586,6 +586,9 @@ span.version {
margin-bottom: 8px;
display: inline;
}
form.section {
position: relative;
}
.followupsection {
display: block;
padding: 0 30px 30px 30px;

+ 1
- 1
settings/js/federationsettingsview.js View File

@@ -83,7 +83,7 @@
if (field === 'avatar') {
return;
}
self.$('#' + field).keyUpDelayedOrEnter(_.bind(self._onInputChanged, self));
self.$('#' + field).keyUpDelayedOrEnter(_.bind(self._onInputChanged, self), true);
});
},


Loading…
Cancel
Save