Skip to content

Commit

Permalink
2.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
seonim-ryu committed Feb 11, 2019
1 parent 4f75b15 commit f1a2b37
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
13 changes: 7 additions & 6 deletions dist/tui-auto-complete.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* tui-auto-complete.js
* @version 2.1.2
* @version 2.1.3
* @author NHNEnt FE Development Lab <dl_javascript@nhnent.com>
* @license MIT
*/
Expand Down Expand Up @@ -1141,16 +1141,17 @@ return /******/ (function(modules) { // webpackBootstrap
* @private
*/
_orderStage: function(type) {
var flowMap = this.flowMap,
$children = this.$resultList.children();
var flowMap = this.flowMap;
var $children = this.$resultList.children();
var reuslt = null;

if (type === flowMap.FIRST) {
return $children.first();
reuslt = $children.first();
} else if (type === flowMap.LAST) {
return $children.last();
reuslt = $children.last();
}

return null;
return reuslt;
},

/**
Expand Down
Loading

0 comments on commit f1a2b37

Please sign in to comment.