Skip to content

Commit

Permalink
Fix ( jquery.ddslick.js ) : Fixes syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Roche committed Mar 17, 2016
1 parent a0dda7e commit 54026ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jquery.ddslick.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
else options.data = $.merge(ddSelect, options.data);

//Replace HTML select with empty placeholder, keep the original
var original = obj, placeholder = $("<div").attr("id", obj.attr("id") + "-dd-placeholder");
var original = obj, placeholder = $("<div>").attr("id", obj.attr("id") + "-dd-placeholder");
obj.replaceWith(placeholder);
obj = placeholder;

Expand Down

0 comments on commit 54026ac

Please sign in to comment.