mirror of
https://github.com/wassname/HackFlowy.git
synced 2026-06-27 16:00:04 +08:00
14 lines
213 B
JavaScript
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);
|
|
}); |