can
Version:
MIT-licensed, client-side, JavaScript framework that makes building rich web applications easy.
16 lines • 373 B
HTML
<html>
<body>
<script src="../../node_modules/steal/steal.js" main="@empty"></script>
<script>
steal("can/view/stache/test/demo.stache", function(demo){
var message = can.compute("Hello 'World\"!");
$(document.body).append(demo({
message: message
}));
setTimeout(function(){
message("works")
},1000)
});
</script>
</body>
</html>