Created
July 31, 2012 20:00
-
-
Save kborchers/3219992 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Task Data | |
{ | |
id: 12345, | |
date: "2012-07-30", | |
title: "Task 1-1", | |
description: "Task 1-1 description text", | |
project: "p1", | |
tags: [ "t1" ] | |
}, | |
{ | |
id: 67890, | |
date: "2012-07-30", | |
title: "Task 2-1", | |
description: "Task 2-1 description text", | |
project: "p2", | |
tags: [ "t1", "t2" ] | |
}, | |
{ | |
id: 54321, | |
date: "2012-07-30", | |
title: "Task 3-1", | |
description: "Task 3-1 description text", | |
project: "p3", | |
tags: [ "t2" ] | |
} | |
Project Data | |
{ | |
id: "p1", | |
title: "Project 1", | |
class: "project-green1" | |
}, | |
{ | |
id: "p2", | |
title: "Project 2", | |
class: "project-orange1" | |
}, | |
{ | |
id: "p3", | |
title: "Project 3", | |
class: "project-blue1" | |
} | |
Tag Data | |
{ | |
id: "t1", | |
title: "Urgent", | |
class: "tag-red1" | |
}, | |
{ | |
id: "t2", | |
title: "Follow Up", | |
class: "tag-blue1" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment