Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Commit fc741cf

Browse files
woops! move changes from dist to src
1 parent ffc7118 commit fc741cf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/select.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -835,7 +835,7 @@
835835
return false;
836836
}
837837
var hasDupe = arr.filter( function (origItem) {
838-
if ( ctrl.search.toUpperCase() === undefined || origItem == null ) {
838+
if ( ctrl.search.toUpperCase() === undefined ) {
839839
return false;
840840
}
841841
return origItem.toUpperCase() === ctrl.search.toUpperCase();

src/select.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -827,7 +827,7 @@
827827
return false;
828828
}
829829
var hasDupe = arr.filter( function (origItem) {
830-
if ( ctrl.search.toUpperCase() === undefined ) {
830+
if ( ctrl.search.toUpperCase() === undefined || origItem == null ) {
831831
return false;
832832
}
833833
return origItem.toUpperCase() === ctrl.search.toUpperCase();

0 commit comments

Comments
 (0)