Files
HackFlowy/javascripts/app.js
T
2013-03-25 01:17:16 +05:30

14 lines
213 B
JavaScript

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