Removed unnecessary quotes
This commit is contained in:
parent
246d25c7f4
commit
4ad23bed88
1 changed files with 3 additions and 3 deletions
|
@ -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');
|
||||||
|
|
Loading…
Reference in a new issue