Knockout Template
by Retsam19
HTML
<div class="test">
</div>
CSS
.test {
background-color: red;
width:50px;
height: 50px;
}
JavaScript
vm = {
foo: "Bar"
};
ko.applyBindings(vm, document.body)
by Retsam19
<div class="test">
</div>
.test {
background-color: red;
width:50px;
height: 50px;
}
vm = {
foo: "Bar"
};
ko.applyBindings(vm, document.body)