Index: UploadWizard/resources/jquery/jquery.mwCoolCats.js =================================================================== --- UploadWizard/resources/jquery/jquery.mwCoolCats.js (Revision 98743) +++ UploadWizard/resources/jquery/jquery.mwCoolCats.js (Arbeitskopie) @@ -213,6 +213,12 @@ _processInput(); } }); + + // Automatical add categories if the user forgot to hit the button. Don't add them when autocomplete/ suggestion-list is open. + _this.blur(function() { + if (_this.data('suggestions-context').data.mouseDownOn.length > 0) return; + _processInput(); + }); this.getWikiText = function() { var wikiText = _getCats().map( function() { return '[[' + this.getPrefixedText() + ']]'; } )