You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var Issue = function(ghAttributes) {
this._ghAttributes = ghAttributes;
//this.developper = null;
this.title = ghAttributes.title;
this.number = ghAttributes.number;
//set start and closed date here
this.start = ghAttributes.created_at;
this.closed = ghAttributes.closed_at; // null if we get /issues?state=open
this.milestone = Milestone.byId[ghAttributes.milestone.id];
this.milestone.issues.push(this);
};
ganttItem: function() {
var dev = this.getDevName();
console.log(this.start, this.closed);
return {
// set start and close date for the issue here
from: "/Date("+this.start+")/",
to: "/Date("+this.closed+")/",
label: this.title,
desc: '#'+this.number + ': ' + this.title,
customClass: config.colorByDev[dev] || "ganttRose",
dataObj: {
issue: this.number
}
};
},
Set the start time of the progress bar
The text was updated successfully, but these errors were encountered: