Removed unnecessary quotes

This commit is contained in:
Alex Tselegidis 2021-12-10 08:31:00 +01:00
parent 246d25c7f4
commit 4ad23bed88
1 changed files with 3 additions and 3 deletions

View File

@ -24,9 +24,9 @@
const url = GlobalVariables.baseUrl + '/index.php/user/ajax_check_login'; const url = GlobalVariables.baseUrl + '/index.php/user/ajax_check_login';
const data = { const data = {
'csrfToken': GlobalVariables.csrfToken, csrfToken: GlobalVariables.csrfToken,
'username': $('#username').val(), username: $('#username').val(),
'password': $('#password').val() password: $('#password').val()
}; };
const $alert = $('.alert'); const $alert = $('.alert');