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-10 01:36:10 +0300
committerThomas Müller <thomas.mueller@tmit.eu>2016-02-10 01:36:10 +0300
commit22c8501ce9338f3a2a39ea70a40a7df395396f4b (patch)
tree34f5adc5dcba9dabdbe3b0f0cc04d0eb00957afd /settings
parentf64dbc67c65077f4f0879d47ca4ea6ac0770a4a3 (diff)
parenta3eaefa5303ace7bb7dfea85eac83eef661b991e (diff)
Merge pull request #22249 from owncloud/fix-22245
Save display name and email address on paste operations
Diffstat (limited to 'settings')
-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();
+ }
+ }
+ });
};