Merge pull request #2500 from nextcloud/issue-2326-personal-settings

Allow emtpy values on personal page and fix saving checkmark position
This commit is contained in:
Morris Jobke 2016-12-05 12:05:26 +01:00 committed by GitHub
commit 5d301ed95d
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);
});
},