diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-12-05 12:05:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-05 12:05:26 +0100 |
commit | 5d301ed95d1f508c9008498bdffd7e842f1c5222 (patch) | |
tree | d50ec946c2ee09a7872f93d75834cbc8b4151f9b | |
parent | eeb81ec783e6e555aa8f1ac3eaa806b3c9dacaf7 (diff) | |
parent | b19b788e7a8133eb83bd05726ab63fdd74b29930 (diff) | |
download | nextcloud-server-5d301ed95d1f508c9008498bdffd7e842f1c5222.tar.gz nextcloud-server-5d301ed95d1f508c9008498bdffd7e842f1c5222.zip |
Merge pull request #2500 from nextcloud/issue-2326-personal-settings
Allow emtpy values on personal page and fix saving checkmark position
-rw-r--r-- | settings/css/settings.css | 3 | ||||
-rw-r--r-- | settings/js/federationsettingsview.js | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/settings/css/settings.css b/settings/css/settings.css index 991ebb0c05f..3f23fb6680d 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -586,6 +586,9 @@ span.version { margin-bottom: 8px; display: inline; } +form.section { + position: relative; +} .followupsection { display: block; padding: 0 30px 30px 30px; diff --git a/settings/js/federationsettingsview.js b/settings/js/federationsettingsview.js index b71b450546d..360167bfe43 100644 --- a/settings/js/federationsettingsview.js +++ b/settings/js/federationsettingsview.js @@ -83,7 +83,7 @@ if (field === 'avatar') { return; } - self.$('#' + field).keyUpDelayedOrEnter(_.bind(self._onInputChanged, self)); + self.$('#' + field).keyUpDelayedOrEnter(_.bind(self._onInputChanged, self), true); }); }, |