diff --git a/settings/js/personal.js b/settings/js/personal.js index 65bc88d209..b0bfa8eb23 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(); + } + } + }); };