Skip to content

Commit

Permalink
#471 checkbox 다중선택시 문제 처리
Browse files Browse the repository at this point in the history
  • Loading branch information
akasima committed Feb 13, 2014
1 parent 22f1019 commit 37f5b93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/js/common.js
Original file line number Diff line number Diff line change
@@ -59,9 +59,9 @@ if(jQuery) jQuery.noConflict();
if(typeof(options.wrap) == "string") options.wrap ='#'+options.wrap;

if(options.wrap) {
obj = $(options.wrap).find('input[name='+itemName+']:checkbox');
obj = $(options.wrap).find('input[name="'+itemName+'"]:checkbox');
} else {
obj = $('input[name='+itemName+']:checkbox');
obj = $('input[name="'+itemName+'"]:checkbox');
}

if(options.checked == 'toggle') {

0 comments on commit 37f5b93

Please sign in to comment.