Comment unused variable

This commit is contained in:
slawkens 2021-10-23 15:00:30 +02:00
parent 96a7c43cb5
commit 16aeb12111

View File

@ -29,7 +29,7 @@ function performInstall(url) {
}
});
// On completed
ajaxRequest.done(function(data) {
ajaxRequest.done(function(/*data*/) {
$('#spinner').hide();
$('#reload_button').show();
});
@ -38,4 +38,4 @@ function performInstall(url) {
console.log('Error: ', error);
$('<span class="error">Error while doing AJAX request. Please refresh the page.</span>').insertAfter("#success-" + lastId);
});
}
}