Skip to content
Snippets Groups Projects
Verified Commit 0c67cdb0 authored by Alexander Olofsson's avatar Alexander Olofsson
Browse files

More attempts to make uglifier happy

parent 81273bcd
No related branches found
No related tags found
No related merge requests found
Pipeline #84710 failed
......@@ -15,13 +15,13 @@ function testConnection(item) {
type: 'post',
url: $(item).attr('data-url'),
data: $('form').serialize().toString(),
success() {
success: function() {
$('#test_connection_button').attr('class', 'btn btn-success').attr('title', '');
},
error({ statusText }) {
error: function({ statusText }) {
$('#test_connection_button').attr('class', 'btn btn-warning').attr('title', statusText.toString());
},
complete() {
complete: function() {
// $('#test_connection_indicator').hide();
},
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment