Added Edit option when searching a callsign

这个提交包含在:
Peter Goodhall 2011-07-25 14:36:55 +01:00
父节点 925034e3e5
当前提交 a1d09d5504

查看文件

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