Skip to content

Commit 182965a

Browse files
committed
Grid Editing: Fix adding new developers, needs date property.
1 parent afa3a8a commit 182965a

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

grid-editing/grid-selectable.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,8 @@
113113
bitcoins: Math.floor( Math.random() * 1500 ),
114114
random: {
115115
value: Math.floor( Math.random() * 13 )
116-
}
116+
},
117+
date: +new Date()
117118
}
118119
}
119120
$( "#addDeveloper" ).click( function() {

grid-editing/grid.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,8 @@
111111
bitcoins: Math.floor( Math.random() * 1500 ),
112112
random: {
113113
value: Math.floor( Math.random() * 13 )
114-
}
114+
},
115+
date: +new Date()
115116
}
116117
}
117118
$( "#addDeveloper" ).click( function() {

0 commit comments

Comments
 (0)