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/js | |
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/js')
-rw-r--r-- | settings/js/federationsettingsview.js | 2 |
1 files changed, 1 insertions, 1 deletions
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); }); }, |