Files
HackFlowy/javascripts/app.js
T
2013-03-24 23:22:54 +05:30

13 lines
193 B
JavaScript

var app = app || {};
$(function(){
var tasks = [
{content: 'helloworld'},
{content: 'wtf'},
{content: 'rotterdam'},
{content: 'hahahah'}
];
new app.ListView(tasks);
});