Open cdrubin opened 11 years ago
I see even more clobbering happening:
var $$item = $$( {
model: {
button_text: 'submit'
},
view: {
'format': '<a data-bind="button_text"><img src="something.png" /></a>'
}
} );
should result in the HTML :
<a data-bind="button_text"><img src="something.png" />submit</a>
but instead clobbers the child element and results in :
<a data-bind="button_text">submit</a>
Is this intentional? Same for the first issue, is this somehow desirable and I am missing the purpose?
@cdrubin, yes, I believe this second example is intentional. Try moving the data-bind to a <span>
inside the <a>
.
First-off: Thank you for a great framework! :)
should result in this HTML :
but instead clobbers the .agility_X class and results in :