Last active
August 29, 2015 14:23
-
-
Save IharKrasnik/1879a17fcc3b0a59c172 to your computer and use it in GitHub Desktop.
activities
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
| var activities = []; | |
| activities[0] = [{ | |
| from: 0, | |
| to: 6, | |
| width: 100, | |
| void: true // tracker offline | |
| }]; | |
| activities[1] = [{ | |
| from: 0, | |
| to: 3, | |
| width: 50, | |
| comment: 'Task #1' | |
| color: '#123456', | |
| },{ | |
| from: 3, | |
| to: 5, | |
| width: 33.3, | |
| comment: 'Default Activity', | |
| color: '#111111' | |
| }, { | |
| from: 5, | |
| to: 6, | |
| width: 16.6, | |
| comment: 'Task #2' | |
| color: '#654321' | |
| }] | |
| activities[2] = [{ | |
| from: 0, | |
| to: 5, | |
| width: 83.3, | |
| comment: 'Task #2' | |
| color: '#654321' | |
| }, { | |
| from: 5, | |
| to: 6, | |
| width: 16.6, | |
| void: true //tracker offline | |
| }]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment