From 16aeb1211189e29ee54f695f4e9fa6678069f136 Mon Sep 17 00:00:00 2001 From: slawkens Date: Sat, 23 Oct 2021 15:00:30 +0200 Subject: [PATCH] Comment unused variable --- tools/installer.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/installer.js b/tools/installer.js index a17b970a..beb3cac2 100644 --- a/tools/installer.js +++ b/tools/installer.js @@ -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); $('Error while doing AJAX request. Please refresh the page.').insertAfter("#success-" + lastId); }); -} \ No newline at end of file +}