remove name attribute from checklist

This commit is contained in:
vitalets 2013-01-18 14:00:12 +04:00
parent 0e208c1762
commit 163acdd7bc

@ -42,8 +42,7 @@ $(function(){
for(var i=0; i<this.sourceData.length; i++) {
$label = $('<label>').append($('<input>', {
type: 'checkbox',
value: this.sourceData[i].value,
name: this.options.name
value: this.sourceData[i].value
}))
.append($('<span>').text(' '+this.sourceData[i].text));