De style was niet goed toegepast, labels kleurden slecht

svn path=/Website/trunk/; revision=31442
This commit is contained in:
Peter Feij
2016-11-11 22:53:27 +00:00
parent 4e3ae78d72
commit d0b6831421

View File

@@ -133,12 +133,12 @@ else
function fnsummaryShow()
{
var status_row = "<label>" + L("lcl_estate_totaal_opp") + "</label> "
+ "<label>" + L("lcl_estate_ruimte_bruto_vloeropp") + "</label>: " + summaryParams.selectedopp.toFixed(2) + " " + L("lcl_estate_ruimte_opp_m2");
var status_row = L("lcl_estate_totaal_opp") + ":&nbsp;"
+ L("lcl_estate_ruimte_bruto_vloeropp") + " = " + summaryParams.selectedopp.toFixed(2) + " " + L("lcl_estate_ruimte_opp_m2");
if (S("fg_contourlayers_alt1") != "" && S("fg_labellayers_alt1") != "")
status_row += ", <label>" + L("lcl_estate_ruimte_opp_alt1") + "</label>: " + summaryParams.selectedoppAlt1.toFixed(2) + " " + L("lcl_estate_ruimte_opp_m2");
status_row += ", " + L("lcl_estate_ruimte_opp_alt1") + " = " + summaryParams.selectedoppAlt1.toFixed(2) + " " + L("lcl_estate_ruimte_opp_m2");
if (S("fg_contourlayers_alt2") != "" && S("fg_labellayers_alt2") != "")
status_row += ", <label>" + L("lcl_estate_ruimte_opp_alt2") + "</label>: " + summaryParams.selectedoppAlt2.toFixed(2) + " " + L("lcl_estate_ruimte_opp_m2");
status_row += ", " + L("lcl_estate_ruimte_opp_alt2") + " = " + summaryParams.selectedoppAlt2.toFixed(2) + " " + L("lcl_estate_ruimte_opp_m2");
return status_row;
}