Contest Logging: Stores country and QRA lookup for bearing added

这个提交包含在:
Peter Goodhall 2011-09-12 17:47:16 +01:00
父节点 2823e8ada1
当前提交 797e6519cf

查看文件

@ -306,12 +306,12 @@ function settime () {
</tr>
</table>
</form>
<div class="info">
<input size="20" id="country" type="text" name="country" value="" /> <span id="locator_info"></span>
</div>
</form>
</div>
@ -332,6 +332,8 @@ $(document).ready(function(){
if ($(this).val()) {
$('#partial_view').load("<?php echo site_url(); ?>//logbook/partial/" + $(this).val()).fadeIn("slow");
$('#locator_info').load("<?php echo site_url(); ?>/logbook/bearing/" + $(this).val()).fadeIn("slow");
$.get('<?php echo site_url(); ?>/logbook/find_dxcc/' + $(this).val(), function(result) {
$('#country').val(result);
});