Skip to content

Instantly share code, notes, and snippets.

@IharKrasnik
Last active August 29, 2015 14:23
Show Gist options
  • Select an option

  • Save IharKrasnik/1879a17fcc3b0a59c172 to your computer and use it in GitHub Desktop.

Select an option

Save IharKrasnik/1879a17fcc3b0a59c172 to your computer and use it in GitHub Desktop.
activities
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