Maslosoft Binder Documentation
Knockout JS tracker and binding handlers with coffee and sugar
Documentation
Relevant code used in examples:
<div data-bind="with: binder.model.intro"> <div data-bind="htmlValue: text"></div> <hr /> <div data-bind="html: text"></div> </div> <script type="text/javascript"> window.onload = function () { binder.model.intro = new Maslosoft.Koe.Intro({ text: introText }); ko.applyBindings({model: binder.model}, document.getElementById('ko-binder')); }; </script>