explicit closing tags

This commit is contained in:
Andrew Croce
2018-09-11 09:47:19 -04:00
parent 6ba6090d4e
commit 1ffeaf756a

View File

@@ -149,7 +149,7 @@
v-bind:class='{ "budget-chart__block--highlighted": month.isHighlighted }' v-bind:class='{ "budget-chart__block--highlighted": month.isHighlighted }'
v-bind:width='month.metrics.blockWidth' v-bind:width='month.metrics.blockWidth'
v-bind:x='month.metrics.blockX' v-bind:x='month.metrics.blockX'
v-bind:height='height'/> v-bind:height='height'></rect>
{# budget bar #} {# budget bar #}
<rect <rect
@@ -159,8 +159,7 @@
v-bind:width='month.metrics.barWidth' v-bind:width='month.metrics.barWidth'
v-bind:height='month.metrics.barHeight' v-bind:height='month.metrics.barHeight'
v-bind:x='month.metrics.barX' v-bind:x='month.metrics.barX'
v-bind:y='month.metrics.barY'> v-bind:y='month.metrics.barY'></rect>
</rect>
{# cumulative dot #} {# cumulative dot #}
<circle <circle
@@ -168,7 +167,7 @@
class='budget-chart__cumulative__dot' class='budget-chart__cumulative__dot'
v-bind:r='month.metrics.cumulativeR' v-bind:r='month.metrics.cumulativeR'
v-bind:cx='month.metrics.cumulativeX' v-bind:cx='month.metrics.cumulativeX'
v-bind:cy='month.metrics.cumulativeY'/> v-bind:cy='month.metrics.cumulativeY'></circle>
{# abbreviated cumulative label #} {# abbreviated cumulative label #}
<text <text
@@ -177,7 +176,7 @@
v-bind:y='month.metrics.cumulativeY - 10' v-bind:y='month.metrics.cumulativeY - 10'
text-anchor='middle' text-anchor='middle'
class='budget-chart__label' class='budget-chart__label'
v-html='month.abbreviatedCumulative'/> v-html='month.abbreviatedCumulative'></text>
{# abbreviated spend label #} {# abbreviated spend label #}
<text <text
@@ -185,7 +184,7 @@
v-bind:y='baseHeight + 20' v-bind:y='baseHeight + 20'
text-anchor='middle' text-anchor='middle'
class='budget-chart__label' class='budget-chart__label'
v-html='"+" + month.abbreviatedSpend'/> v-html='"+" + month.abbreviatedSpend'></text>
{# month label #} {# month label #}
<text <text
@@ -193,13 +192,13 @@
v-bind:y='baseHeight + 40' v-bind:y='baseHeight + 40'
text-anchor='middle' text-anchor='middle'
class='budget-chart__label budget-chart__label--strong' class='budget-chart__label budget-chart__label--strong'
v-html='month.date.month'/> v-html='month.date.month'></text>
</g> </g>
</a> </a>
{# spend/projected budget path lines #} {# spend/projected budget path lines #}
<path class='budget-chart__projected-path' v-bind:d='projectedPath'/> <path class='budget-chart__projected-path' v-bind:d='projectedPath'></path>
<path class='budget-chart__spend-path' v-bind:d='spendPath'/> <path class='budget-chart__spend-path' v-bind:d='spendPath'></path>
{# max budget line #} {# max budget line #}
<line <line
@@ -207,7 +206,7 @@
x1='0' x1='0'
v-bind:x2='width' v-bind:x2='width'
v-bind:y1='budgetHeight' v-bind:y1='budgetHeight'
v-bind:y2='budgetHeight'/> v-bind:y2='budgetHeight'></line>
<text <text
x='20' x='20'
@@ -217,7 +216,7 @@
x='20' x='20'
v-bind:y='budgetHeight + 40' v-bind:y='budgetHeight + 40'
class='budget-chart__label' class='budget-chart__label'
v-html='displayBudget'/> v-html='displayBudget'></text>
</svg> </svg>
</div> </div>
</budget-chart> </budget-chart>