mithril-vndb/background.html
2014-05-15 17:13:16 -04:00

13 lines
No EOL
278 B
HTML

<script src="mithril.js"></script>
<script type="text/javascript">
var app = {}
app.controller = function() {
this.index = 0
m.request({method: "GET", url: "/test.html"})
}
app.view = function(ctrl) {
return m("div", "hello" + ctrl.index)
}
m.render(document, app)
</script>