changelog checklist

This commit is contained in:
vitalets
2012-11-25 15:14:40 +04:00
parent 40eea34004
commit 18cbb07090
2 changed files with 4 additions and 3 deletions

@ -3,6 +3,7 @@ X-editable changelog
Version 1.0.2 wip Version 1.0.2 wip
---------------------------- ----------------------------
[enh] new input type: checklist (vitalets)
[enh] updated docs: inputs dropdown menu, global templates section (vitalets) [enh] updated docs: inputs dropdown menu, global templates section (vitalets)

@ -11,9 +11,9 @@ $(function(){
$('#options').editable({ $('#options').editable({
value: [2, 3], value: [2, 3],
source: [ source: [
{value: 1, text: 'Active'}, {value: 1, text: 'option1'},
{value: 2, text: 'Blocked'}, {value: 2, text: 'option2'},
{value: 3, text: 'Deleted'} {value: 3, text: 'option3'}
] ]
} }
}); });