Allow emtpy values on personal page and fix saving checkmark position

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
Christoph Wurst 2016-12-05 10:47:00 +01:00
parent eeb81ec783
commit b19b788e7a
No known key found for this signature in database
GPG Key ID: CC42AC2A7F0E56D8
2 changed files with 4 additions and 1 deletions

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;

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);
});
},