UNPKG
todomvc
Version:
latest (0.1.1)
0.1.1
0.1.0
> Helping you select an MV\* framework
todomvc
/
examples
/
mithril
/
js
/
models
/
todo.js
11 lines
(9 loc)
•
228 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
'use strict'
;
/*global m */
var
app = app || {};
// Todo Model
app.
Todo
=
function
(
data
) {
this
.
title
= m.
prop
(data.
title
);
this
.
completed
= m.
prop
(data.
completed
||
false
);
this
.
editing
= m.
prop
(data.
editing
||
false
); };