File tree 5 files changed +18
-2
lines changed
5 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,13 @@ module.exports = {
18
18
19
19
getNote : function ( id ) {
20
20
return notes [ id ] ;
21
+ } ,
22
+
23
+ updateNote : function ( id , title , content ) {
24
+ if ( notes [ id ] ) {
25
+ notes [ id ] . title = title ;
26
+ notes [ id ] . content = content ;
27
+ }
21
28
}
22
29
23
30
} ;
Original file line number Diff line number Diff line change 4
4
</head >
5
5
<body >
6
6
<h1 >Awesome site!</h1 >
7
+ <h3 >Your notes:</h3 >
7
8
<ul >
8
9
{{ #notes }}
9
10
<li >
Original file line number Diff line number Diff line change 4
4
</head >
5
5
<body >
6
6
<h1 >Awesome site!</h1 >
7
- <h1 >Make a new note!</h1 >
7
+ <h3 >Make a new note!</h3 >
8
8
<form action =" /create" method =" post" >
9
9
Title:
10
10
<br >
Original file line number Diff line number Diff line change 3
3
<title >Awesome Web Application!</title >
4
4
</head >
5
5
<body >
6
- <h1 >{{ note.title }} </h1 >
6
+ <h1 >Awesome site!</h1 >
7
+ <h3 >{{ note.title }} </h3 >
7
8
<p >{{ note.content }} </p >
8
9
<a href =" /" >Back to Home</a >
9
10
</body >
Original file line number Diff line number Diff line change @@ -18,6 +18,13 @@ module.exports = {
18
18
19
19
getNote : function ( id ) {
20
20
return notes [ id ] ;
21
+ } ,
22
+
23
+ updateNote : function ( id , title , content ) {
24
+ if ( notes [ id ] ) {
25
+ notes [ id ] . title = title ;
26
+ notes [ id ] . content = content ;
27
+ }
21
28
}
22
29
23
30
} ;
You can’t perform that action at this time.
0 commit comments