Skip to content
Features
Business
Explore
Pricing
This repository
Sign in
or
Sign up
Watch
18
Star
182
Fork
87
FezVrasta
/
dropdown.js
Code
Issues
16
Pull requests
3
Projects
0
Pulse
Graphs
Permalink
Browse files
Fix autoinit filter
master
(
#58
)
1 parent
0aee6dc
commit
0eb2b1e2205da58430d0c472661be4b0313db4e0
SullyP
committed on
GitHub
Feb 15, 2017
Unified
Split
Showing
1 changed file
with
3 additions
and
3 deletions
.
+3
−3
jquery.dropdown.js
Show comments
View
6
jquery.dropdown.js
@@ -274,11 +274,11 @@
if
(
!
$this
.
is
(
"
select
"
)) {
$this
=
$this
.
find
(
'
select
'
);
}
-
if
(
$this
.
is
(
options
.
autoinit
)) {
$this
.
each
(
function
() {
-
initElement
(
$
(
this
));
+
if
(
$
(
this
).
is
(
options
.
autoinit
)) {
+
initElement
(
$
(
this
));
+ }
});
- }
});
}
Toggle all file notes
0 comments on commit
0eb2b1e
Please
sign in
to comment.
You can't perform that action at this time.
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
0 comments on commit
0eb2b1e