Skip to content

Commit a73477c

Browse files
committed
Replace not-working this.document.find()
1 parent a8cf24d commit a73477c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/jquery.multiselect.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,8 @@
113113
if(!!elem.nodeType) {
114114
return $(elem);
115115
}
116-
return this.document.find(elem).eq(0);
116+
117+
return $(elem).eq(0);
117118
}
118119

119120
/**

0 commit comments

Comments
 (0)