Skip to content

Commit

Permalink
Fix adding Bcc addresses from identity
Browse files Browse the repository at this point in the history
Fixes that issue, but I kind of remember that there was a reason why the
updateHidden call was early in that code.

Lesson: Always comment your code, kids.
  • Loading branch information
slusarz committed Dec 6, 2014
1 parent 28e4221 commit 0b478f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imp/js/autocomplete.js
Expand Up @@ -175,9 +175,9 @@ var IMP_Autocompleter = Class.create({
{
this.data = [];
this.currentEntries().invoke('remove');
this.updateHiddenInput();
this.processValue($F(this.elt));
this.processInput();
this.updateHiddenInput();
},

processInput: function()
Expand Down

0 comments on commit 0b478f7

Please sign in to comment.