Rearranged the launch card and made a better burst calc activation link, and updated styling to reflect these changes - closes #67

pull/73/head
jonsowman 2011-01-15 01:10:14 +00:00
rodzic 8040ec2b1a
commit 2983c59277
3 zmienionych plików z 37 dodań i 19 usunięć

Wyświetl plik

@ -165,6 +165,15 @@ a { text-decoration: underline; color: #333; cursor: pointer; }
bottom: 0; right: 0;
}
#launch-card {
width: 100%;
padding: 5px;
}
#launch-card tr {
width: 50%;
}
#scenario_info {
position: absolute;
top: 25px;

Wyświetl plik

@ -288,7 +288,7 @@ google.load("jqueryui", "1.8.1");
<div id="input_form" class="box ui-corner-all">
<img class="handle" src="images/drag_handle.png" />
<form action="" id="modelForm" name="modelForm">
<table>
<table id="launch-card">
<tr>
<td>Launch Site:
<span>
@ -302,15 +302,12 @@ google.load("jqueryui", "1.8.1");
</td>
</tr>
<tr>
<td>Latitude:</td>
<td><input id="lat" type="text" name="lat" value="52.2135"
onKeyDown="SetSiteOther()">
</td>
</tr>
<tr>
<td>Longitude:</td>
<td><input id="lon" type="text" name="lon" value="0.0964"
onKeyDown="SetSiteOther()">
<td>Latitude/Longitude:</td>
<td>
<input id="lat" type="text" size="8" name="lat" value="52.2135"
onKeyDown="SetSiteOther()">&nbsp;/&nbsp;
<input id="lon" type="text" size="8" name="lon" value="0.0964"
onKeyDown="SetSiteOther()">
</td>
</tr>
<tr>
@ -365,8 +362,7 @@ google.load("jqueryui", "1.8.1");
</td>
<tr>
<td>
Ascent Rate (m/s): <a id="burst-calc-show" class="tipsyLink"
title="Use the burst calculator to find this value">?</a>
Ascent Rate (m/s):
</td>
<td><input id="ascent" type="text" name="ascent" value="5"></td>
</tr>
@ -375,11 +371,20 @@ google.load("jqueryui", "1.8.1");
<td><input id="burst" type="text" name="burst" value="30000"></td>
</tr>
<tr>
<td>Descent Rate (sea level m/s):</td>
<td colspan="2">
<a id="burst-calc-show" class="tipsyLink"
title="Use a calculator to find burst altitude and ascent rate">
Use Burst Calculator</a>
</td>
</tr>
<tr>
<td>
Descent Rate (<a class="tipsyLink" title="At sea level">m/s</a>):
</td>
<td><input id="drag" type="text" name="drag" value="5"></td>
</tr>
<tr>
<td>Landing prediction software: </td><td>
<td>GFS Definition: </td><td>
<select id="software" name="software">
<option value="gfs" selected="selected">GFS</option>
<option value="gfs_hd">GFS HD</option>
@ -391,7 +396,7 @@ google.load("jqueryui", "1.8.1");
<option value="3" selected="selected">3</option>
<option value="5">5</option>
<option value="10">10</option>
</select>&nbsp;Lon:
</select>&nbsp;&nbsp;&nbsp;Lon:
<select id="delta_lon" name="delta_lon">
<option value="3" selected="selected">3</option>
<option value="5">5</option>

Wyświetl plik

@ -45,13 +45,17 @@ function EH_BurstCalc() {
});
$("#burst-calc-advanced-show").click(function() {
// Show the burst calculator constants
$("#burst-calc").slideUp();
$("#burst-calc-constants").slideDown();
// We use a callback function to fade in the new content to make
// sure the old content has gone, in order to create a smooth effect
$("#burst-calc").fadeOut('fast', function() {
$("#burst-calc-constants").fadeIn();
});
});
$("#burst-calc-advanced-hide").click(function() {
// Show the burst calculator constants
$("#burst-calc-constants").slideUp();
$("#burst-calc").slideDown();
$("#burst-calc-constants").fadeOut('fast', function() {
$("#burst-calc").fadeIn();
});
});
}