diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2016-12-05 10:47:00 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2016-12-05 10:48:52 +0100 |
commit | b19b788e7a8133eb83bd05726ab63fdd74b29930 (patch) | |
tree | d50ec946c2ee09a7872f93d75834cbc8b4151f9b /settings | |
parent | eeb81ec783e6e555aa8f1ac3eaa806b3c9dacaf7 (diff) | |
download | nextcloud-server-b19b788e7a8133eb83bd05726ab63fdd74b29930.tar.gz nextcloud-server-b19b788e7a8133eb83bd05726ab63fdd74b29930.zip |
Allow emtpy values on personal page and fix saving checkmark position
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'settings')
-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); }); }, |