diff --git a/application/views/webadif/export.php b/application/views/webadif/export.php index f968d582..ccfdb719 100644 --- a/application/views/webadif/export.php +++ b/application/views/webadif/export.php @@ -52,7 +52,7 @@ echo '' . $station->station_callsign . ''; echo '' . $station->notcount . ''; echo '' . $station->totcount . ''; - echo ''; + echo ''; echo ''; } } diff --git a/assets/js/sections/webadif.js b/assets/js/sections/webadif.js index 2687d11d..fb200dd1 100644 --- a/assets/js/sections/webadif.js +++ b/assets/js/sections/webadif.js @@ -29,16 +29,16 @@ function ExportWebADIF(station_id) { if ($(".errormessages").length > 0) { $(".errormessages").remove(); } - $(".ld-ext-right").addClass('running'); - $(".ld-ext-right").prop('disabled', true); + $(".ld-ext-right-"+station_id).addClass('running'); + $(".ld-ext-right-"+station_id).prop('disabled', true); $.ajax({ url: base_url + 'index.php/webadif/upload_station', type: 'post', data: {'station_id': station_id}, success: function (data) { - $(".ld-ext-right").removeClass('running'); - $(".ld-ext-right").prop('disabled', false); + $(".ld-ext-right-"+station_id).removeClass('running'); + $(".ld-ext-right-"+station_id).prop('disabled', false); if (data.status == 'OK') { $.each(data.info, function(index, value){ $('#notcount'+value.station_id).html(value.notcount);