Skip to content

Commit

Permalink
Ports in 8c991ad22—Only position dropdown once when adding multiple i…
Browse files Browse the repository at this point in the history
…tems
  • Loading branch information
roblevintennis committed Jun 7, 2017
1 parent 1782fb4 commit 8f46e77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/selectize.js
Original file line number Diff line number Diff line change
Expand Up @@ -1496,7 +1496,7 @@ $.extend(Selectize.prototype, {
// hide the menu if the maximum number of items have been selected or no options are left
if (!$options.length || self.isFull()) {
self.close();
} else {
} else if (!self.isPending) {
self.positionDropdown();
}

Expand Down

0 comments on commit 8f46e77

Please sign in to comment.