Update DEVELOPMENT.md

This commit is contained in:
Tetrakern 2024-07-26 02:24:21 +02:00
parent 2528fcc6f8
commit df701ede12

View File

@ -164,10 +164,10 @@ fcn_ajaxGet(
null, // Optional AJAX URL
{} // Optional headers
)
.then((response) => {
.then(response => {
// Check response.success
})
.catch((error) => {
.catch(error => {
// Check error
});
```
@ -182,10 +182,10 @@ fcn_ajaxPost(
null, // Optional AJAX URL
{} // Optional headers
)
.then((response) => {
.then(response => {
// Check response.success
})
.catch((error) => {
.catch(error => {
// Check error
});
```