First-off: Thank you for a great framework! :)
var $$item = $$( {
model: {
type: 'document'
},
view: {
'format': '<li data-bind="name, class=type">',
'style': '& { background-color: green }'
}
} );
should result in this HTML :
<li class=".agility_X document" data-bind="name, class=type"></li>
but instead clobbers the .agility_X class and results in :
<li class="document" data-bind="name, class=type"></li>
First-off: Thank you for a great framework! :)
should result in this HTML :
but instead clobbers the .agility_X class and results in :