jsgantt-improved
Advanced tools
Comparing version 2.6.3 to 2.6.4
@@ -452,2 +452,3 @@ "use strict"; | ||
var vTmpTBody = draw_utils_1.newNode(vTmpTab, 'tbody'); | ||
var vTmpTFoot = draw_utils_1.newNode(vTmpTab, 'tfoot'); | ||
events_1.syncScroll([vTmpContentTabWrapper, vTmpDiv], 'scrollTop'); | ||
@@ -510,3 +511,3 @@ events_1.syncScroll([gChartLbl, vTmpDiv], 'scrollLeft'); | ||
var vTaskWidth = vTaskRightPx; | ||
// Draw Group Bar which has outer div with inner group div | ||
// Draw Group Bar which has outer div with inner group div | ||
// and several small divs to left and right to create angled-end indicators | ||
@@ -623,3 +624,12 @@ if (this.vTaskList[i].getGroup()) { | ||
// Include the footer with the days/week/month... | ||
vTmpTBody.appendChild(vDateRow.cloneNode(true)); | ||
if (vSingleCell) { | ||
var vTmpTFootTRow = draw_utils_1.newNode(vTmpTFoot, 'tr'); | ||
var vTmpTFootTCell = draw_utils_1.newNode(vTmpTFootTRow, 'td', null, null, null, '100%'); | ||
var vTmpTFootTCellTable = draw_utils_1.newNode(vTmpTFootTCell, 'table', null, 'gcharttableh', null, '100%'); | ||
var vTmpTFootTCellTableTBody = draw_utils_1.newNode(vTmpTFootTCellTable, 'tbody'); | ||
vTmpTFootTCellTableTBody.appendChild(vDateRow.cloneNode(true)); | ||
} | ||
else { | ||
vTmpTFoot.appendChild(vDateRow.cloneNode(true)); | ||
} | ||
return { vRightTable: vRightTable }; | ||
@@ -626,0 +636,0 @@ }; |
@@ -687,4 +687,8 @@ "use strict"; | ||
} | ||
pList[pRow].setPlanStart(vMinPlanDate); | ||
pList[pRow].setPlanEnd(vMaxPlanDate); | ||
if (vMinPlanDate) { | ||
pList[pRow].setPlanStart(vMinPlanDate); | ||
} | ||
if (vMaxPlanDate) { | ||
pList[pRow].setPlanEnd(vMaxPlanDate); | ||
} | ||
pList[pRow].setNumKid(vNumKid); | ||
@@ -691,0 +695,0 @@ pList[pRow].setWeight(vWeight); |
{ | ||
"name": "jsgantt-improved", | ||
"version": "2.6.3", | ||
"version": "2.6.4", | ||
"description": "jsgantt-improved", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4809949
113149