Add spinner that displays on the upload button when user clicks to upload to wikimedia commons
Change the way disabling the upload button works (from using $("#upload-button").toggleClass('disabled') to using $("#upload-button").prop('disabled', true)as the former doesn't prevent the user from clicking multiple time
$("#upload-button").toggleClass('disabled')
to using$("#upload-button").prop('disabled', true)
as the former doesn't prevent the user from clicking multiple time