Skip to content

Commit

Permalink
Fix resizing compose input window when removing an entry
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Nov 15, 2014
1 parent cc98fb8 commit fcab544
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion imp/js/autocomplete.js
Expand Up @@ -280,9 +280,9 @@ var IMP_Autocompleter = Class.create({
this.removeEntry(input);
} else {
this.input.setValue(input);
this.resize();
}

this.resize();
this.focus();
},

Expand All @@ -293,6 +293,7 @@ var IMP_Autocompleter = Class.create({
return (v.id != input.retrieve('itemid'));
});
this.updateHiddenInput();
this.resize();
},

// Format: value [, value [, ...]]
Expand Down

0 comments on commit fcab544

Please sign in to comment.