Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-02-09 18:18:47 +0300
committerThomas Müller <thomas.mueller@tmit.eu>2016-02-09 18:20:04 +0300
commita3eaefa5303ace7bb7dfea85eac83eef661b991e (patch)
tree2a9ea1c08fe9c753b93618911857a5362bbab096 /settings/js
parent4659bf9b4a880376e690d3ca52e855a861c143f1 (diff)
Save display name and email address on paste operations - fixes #22245
Diffstat (limited to 'settings/js')
-rw-r--r--settings/js/personal.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/settings/js/personal.js b/settings/js/personal.js
index 65bc88d2098..b0bfa8eb230 100644
--- a/settings/js/personal.js
+++ b/settings/js/personal.js
@@ -31,6 +31,14 @@ jQuery.fn.keyUpDelayedOrEnter = function (callback, allowEmptyValue) {
cb();
}
});
+
+ this.bind('paste', null, function (e) {
+ if(!e.keyCode){
+ if (allowEmptyValue || that.val() !== '') {
+ cb();
+ }
+ }
+ });
};