diff --git a/public/main.html b/public/main.html index 790dc6e865eb2be5093248b8bb0440e94da1f267..e0ad09c4ddad980a23084a0b9b7628d0709532b2 100644 --- a/public/main.html +++ b/public/main.html @@ -273,17 +273,18 @@ <div class="dropp-body"></div> <div class="select"> - <select id="selectBox" onmouseover="chosenAttributeHandler(this);"> - <option class=specificYield key= specificYield id="specificYield" value="specificYield" type= "selectBox" >Specific Yield</option> - <option class=totalInvestment key="totalInvestment" id="totalInvestment" value="totalInvestment" type="selectBox" >Total Investment</option> - <option class="maintenancePerYear" key="maintenancePerYear" value="maintenancePerYear" type="selectBox" >Maintenance Per Year</option> - <option class="netPresentValue" key="netPresentValue" value="netPresentValue" type="selectBox" >Net Present Value</option> - <option class="nominalPower" key="nominalPower" value="nominalPower" type="nominalPower" >Nominal Power</option> + <select id="selectBox" onchange="chosenAttributeHandler(this);"> + <option selected disabled>Choose one</option> + <option class=specificYield key= specificYield id="specificYield" value="specificYield" type="selectBox">Specific Yield</option> + <option class=totalInvestment key="totalInvestment" id="totalInvestment" value="totalInvestment" type="selectBox">Total Investment</option> + <option class="maintenancePerYear" key="maintenancePerYear" value="maintenancePerYear" type="selectBox">Maintenance Per Year</option> + <option class="netPresentValue" key="netPresentValue" value="netPresentValue" type="selectBox">Net Present Value</option> + <option class="nominalPower" key="nominalPower" value="nominalPower" type="nominalPower">Nominal Power</option> <option class="paybackPeriod" key="paybackPeriod" value="paybackPeriod" id="selectBox">Payback Period</option> - <option class="levelizedCostOfElectricity" key="levelizedCostOfElectricity" value="levelizedCostOfElectricity" type="selectBox" >Levelized Cost Of Electricity</option> - <option class="internalRateOfReturn" key="internalRateOfReturn" value="internalRateOfReturn" type="selectBox" >Internal Rate Of Return</option> - <option class="discountedPaybackPeriod" key="discountedPaybackPeriod" value="discountedPaybackPeriod" type="selectBox" >Discounted Payback Period</option> - <option class="shadowValue" key="shadowValue" value="shadowValue" type="selectBox" >Shadow Value</option> + <option class="levelizedCostOfElectricity" key="levelizedCostOfElectricity" value="levelizedCostOfElectricity" type="selectBox">Levelized Cost Of Electricity</option> + <option class="internalRateOfReturn" key="internalRateOfReturn" value="internalRateOfReturn" type="selectBox">Internal Rate Of Return</option> + <option class="discountedPaybackPeriod" key="discountedPaybackPeriod" value="discountedPaybackPeriod" type="selectBox">Discounted Payback Period</option> + <option class="shadowValue" key="shadowValue" value="shadowValue" type="selectBox">Shadow Value</option> </select> <span class="focus"></span> </div>