aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings/js
diff options
context:
space:
mode:
authorChristopher Ng <chrng8@gmail.com>2021-06-29 18:46:37 +0000
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2021-07-15 10:16:06 +0200
commit44763576b1180c84b645fcd7017eceaeeeedb094 (patch)
tree7db924e79a46d49ddbc2f2fbb9e672238a6f1ea7 /apps/settings/js
parentde6e55075bc940ad4b576ba1874ad58960dba11c (diff)
downloadnextcloud-server-44763576b1180c84b645fcd7017eceaeeeedb094.tar.gz
nextcloud-server-44763576b1180c84b645fcd7017eceaeeeedb094.zip
Make emails Vuetiful
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'apps/settings/js')
-rw-r--r--apps/settings/js/federationsettingsview.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/settings/js/federationsettingsview.js b/apps/settings/js/federationsettingsview.js
index cf2865be1b0..602acab5c8d 100644
--- a/apps/settings/js/federationsettingsview.js
+++ b/apps/settings/js/federationsettingsview.js
@@ -119,7 +119,10 @@
_registerEvents: function() {
var self = this;
_.each(this._inputFields, function(field) {
- if (field === 'avatar') {
+ if (
+ field === 'avatar' ||
+ field === 'email'
+ ) {
return;
}
self.$('#' + field).keyUpDelayedOrEnter(_.bind(self._onInputChanged, self), true);