Skip to content
This repository has been archived by the owner on Nov 10, 2017. It is now read-only.

Commit

Permalink
Fix dependency select bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom MacWright committed Jan 5, 2011
1 parent 2a8c958 commit 7bf3da5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/site.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ $(document).ready(function() {
dependencies = $(this).attr('title').split(',');
version = $($(this).parents('.version')[0]).attr('id');
for (i in dependencies) {
$('#' + version + " input[value='' + dependencies[i] + '']").attr('checked', true);
$('#' + version + " input[value='" + dependencies[i] + "']").attr('checked', true);
}
}
}
Expand Down

0 comments on commit 7bf3da5

Please sign in to comment.