Merge pull request #3932 from nextcloud/downstream-27273
trigger event on input autofill
This commit is contained in:
commit
ab16383853
|
@ -20,7 +20,8 @@ OC.Settings = OC.Settings || {};
|
||||||
jQuery.fn.keyUpDelayedOrEnter = function (callback, allowEmptyValue) {
|
jQuery.fn.keyUpDelayedOrEnter = function (callback, allowEmptyValue) {
|
||||||
var cb = callback;
|
var cb = callback;
|
||||||
var that = this;
|
var that = this;
|
||||||
this.keyup(_.debounce(function (event) {
|
|
||||||
|
this.on('input', _.debounce(function (event) {
|
||||||
// enter is already handled in keypress
|
// enter is already handled in keypress
|
||||||
if (event.keyCode === 13) {
|
if (event.keyCode === 13) {
|
||||||
return;
|
return;
|
||||||
|
@ -36,14 +37,6 @@ jQuery.fn.keyUpDelayedOrEnter = function (callback, allowEmptyValue) {
|
||||||
cb(event);
|
cb(event);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
this.bind('paste', null, function (event) {
|
|
||||||
if(!event.keyCode){
|
|
||||||
if (allowEmptyValue || that.val() !== '') {
|
|
||||||
cb(event);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
};
|
||||||
|
|
||||||
function updateAvatar (hidedefault) {
|
function updateAvatar (hidedefault) {
|
||||||
|
|
Loading…
Reference in New Issue