Skip to content

Commit

Permalink
Merge pull request #1 from AMRoche/master
Browse files Browse the repository at this point in the history
Fix ( Syntax Error )
  • Loading branch information
Brad Berger committed Mar 17, 2016
2 parents a0dda7e + 49967d1 commit b852c0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/jquery.ddslick.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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 b852c0f

Please sign in to comment.