Skip to content

Commit

Permalink
Fixed problem where select list's item checkbox wasn't getting checke…
Browse files Browse the repository at this point in the history
…d properly.
  • Loading branch information
Wobbabits committed Nov 13, 2011
1 parent d2e26bb commit 681dbf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chui/chui.js
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ $.fn.UISelectionList = function ( callback ) {
$(this).bind("click", function() {
$(this).siblings().removeClass("selected");
$(this).addClass("selected");
$(this).find("input").checked = true;
$(this).find("input")[0].checked = true;
if (callback) {
callback.call(callback, $(this).find("input"));
}
Expand Down

0 comments on commit 681dbf3

Please sign in to comment.