From 13718b23e988acc407b196f2563469202e3b7d42 Mon Sep 17 00:00:00 2001 From: Felix Heidecke Date: Mon, 27 Feb 2017 22:49:42 +0100 Subject: [PATCH] trigger event on input autofill Signed-off-by: Morris Jobke --- settings/js/personal.js | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/settings/js/personal.js b/settings/js/personal.js index 89491b9665..52ab2f23f8 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -20,7 +20,8 @@ OC.Settings = OC.Settings || {}; jQuery.fn.keyUpDelayedOrEnter = function (callback, allowEmptyValue) { var cb = callback; var that = this; - this.keyup(_.debounce(function (event) { + + this.on('input', _.debounce(function (event) { // enter is already handled in keypress if (event.keyCode === 13) { return; @@ -36,14 +37,6 @@ jQuery.fn.keyUpDelayedOrEnter = function (callback, allowEmptyValue) { cb(event); } }); - - this.bind('paste', null, function (event) { - if(!event.keyCode){ - if (allowEmptyValue || that.val() !== '') { - cb(event); - } - } - }); }; function updateAvatar (hidedefault) {