mirror of
https://github.com/wassname/HackFlowy.git
synced 2026-06-27 16:00:04 +08:00
13 lines
193 B
JavaScript
13 lines
193 B
JavaScript
var app = app || {};
|
|
|
|
$(function(){
|
|
|
|
var tasks = [
|
|
{content: 'helloworld'},
|
|
{content: 'wtf'},
|
|
{content: 'rotterdam'},
|
|
{content: 'hahahah'}
|
|
];
|
|
|
|
new app.ListView(tasks);
|
|
}); |