1
0
mirror of https://github.com/EGroupware/egroupware.git synced 2025-01-08 15:08:59 +01:00

Make sure magicsuggest loses its focus class to avoid focus stealing issues with multiple on a page

This commit is contained in:
nathangray 2017-04-11 10:14:43 -06:00
parent 7fd7a7e908
commit cfba2eea33

View File

@ -401,6 +401,11 @@ var et2_taglist = (function(){ "use strict"; return et2_selectbox.extend([et2_IR
// Do size limit checks
this.resize();
// Make sure magicsuggest loses focus class to prevent issues with
// multiple on the page
this.div.on('blur', 'input', function() {
jQuery('.ms-ctn-focus', widget.div).removeClass('ms-ctn-focus');
})
return true;
},