Added Edit option when searching a callsign

This commit is contained in:
Peter Goodhall
2011-07-25 14:36:55 +01:00
parent 925034e3e5
commit a1d09d5504

View File

@@ -14,7 +14,7 @@ i=0;
$(document).ready(function(){
$("#callsign").keyup(function(){
if ($(this).val()) {
$('#partial_view').load("logbook/partial/" + $(this).val()).fadeIn("slow");
$('#partial_view').load("logbook/search_result/" + $(this).val()).fadeIn("slow");
}
});