Skip to content
This repository has been archived by the owner on Aug 1, 2024. It is now read-only.

Commit

Permalink
reset event json
Browse files Browse the repository at this point in the history
  • Loading branch information
jquense committed Oct 28, 2015
1 parent 0489ba6 commit 2dbd922
Showing 1 changed file with 29 additions and 44 deletions.
73 changes: 29 additions & 44 deletions examples/events.js
Original file line number Diff line number Diff line change
@@ -1,30 +1,20 @@
// import Chance from 'chance';

// let chance = new Chance();
// let events = []

// for (var i = 0; i < 300; i++) {
// events.push({
// start: chance.date({ year: 2015 }),
// })

export default [
// {
// "title": "All Day Event",
// "allDay": true,
// "start": new Date(2015, 3, 0),
// "end": new Date(2015, 3, 0)
// },
// {
// "title": "Long Event",
// "start": new Date(2015, 3, 7),
// "end": new Date(2015, 3, 10),
// },
// {
// "title": "Some Event",
// "start": new Date(2015, 3, 9, 0, 0, 0),
// "end": new Date(2015, 3, 9, 0, 0, 0),
// },
{
"title": "All Day Event",
"allDay": true,
"start": new Date(2015, 3, 0),
"end": new Date(2015, 3, 0)
},
{
"title": "Long Event",
"start": new Date(2015, 3, 7),
"end": new Date(2015, 3, 10),
},
{
"title": "Some Event",
"start": new Date(2015, 3, 9, 0, 0, 0),
"end": new Date(2015, 3, 9, 0, 0, 0),
},
{
"title": "Conference",
"start": new Date(2015, 3, 11),
Expand All @@ -33,36 +23,31 @@ export default [
{
"title": "Meeting",
"start": new Date(2015, 3, 12, 10, 30, 0, 0),
"end": new Date(2015, 3, 13, 12, 30, 0, 0)
"end": new Date(2015, 3, 12, 12, 30, 0, 0)
},
{
"title": "Lunch",
"start":new Date(2015, 3, 12, 12, 0, 0, 0),
"end": new Date(2015, 3, 13, 13, 0, 0, 0)
"end": new Date(2015, 3, 12, 13, 0, 0, 0)
},
{
"title": "Meeting",
"start":new Date(2015, 3, 12,14, 0, 0, 0),
"end": new Date(2015, 3, 12,15, 0, 0, 0)
},
{
"title": "Happy Hour",
"start":new Date(2015, 3, 12, 17, 0, 0, 0),
"end": new Date(2015, 3, 12, 17, 30, 0, 0)
},
// {
// "title": "Meeting",
// "start":new Date(2015, 3, 12,14, 0, 0, 0),
// "end": new Date(2015, 3, 13,15, 0, 0, 0)
// },
// {
// "title": "Happy Hour",
// "start":new Date(2015, 3, 12, 17, 0, 0, 0),
// "end": new Date(2015, 3, 13, 17, 30, 0, 0)
// },
{
"title": "Dinner",
"start":new Date(2015, 3, 12, 20, 0, 0, 0),
"end": new Date(2015, 3, 13, 21, 0, 0, 0)
"end": new Date(2015, 3, 12, 21, 0, 0, 0)
},
{
"title": "Birthday Party",
"start":new Date(2015, 3, 13, 7, 0, 0),
"end": new Date(2015, 3, 13, 10, 30, 0)
},
{
"title": "Birthday Party 2",
"start":new Date(2015, 3, 13, 7, 0, 0),
"end": new Date(2015, 3, 13, 7, 0, 0)
}
]

0 comments on commit 2dbd922

Please sign in to comment.