fix checklist checked display for single value

This commit is contained in:
vitalets
2013-04-02 20:55:15 +04:00
parent c7a223be2f
commit 500223ca92
3 changed files with 15 additions and 1 deletions

@ -64,6 +64,8 @@ $(function(){
value = str.split(reg);
} else if($.isArray(str)) {
value = str;
} else {
value = [str];
}
return value;
},