site info => JSON

This commit is contained in:
Yaman Qalieh 2016-09-22 21:17:34 -04:00
parent 20c0ca7a9f
commit 1a31a25b36

View File

@ -780,12 +780,13 @@ Template.main.events({
var work = works[j];
events.push({
"Subject": work.name,
"Start Date": work.dueDate.toLocaleDateString(),
"Start Date": work.realDate.toLocaleDateString(),
"Description": work.description,
"All Day Event": True
"All Day Event": true
});
}
}
console.log(JSON.stringify(events));
},
'keydown input' (event) { // Enter to close input.
var modifyingInput = Session.get("modifying");