Save display name and email address on paste operations - fixes #22245

remotes/origin/users-ajaxloadgroups
Thomas Müller 10 years ago
parent 4659bf9b4a
commit a3eaefa530
  1. 8
      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();
}
}
});
};

Loading…
Cancel
Save