Skip to content

Commit

Permalink
Fix payload reference
Browse files Browse the repository at this point in the history
  • Loading branch information
laffra committed Nov 24, 2024
1 parent dacee24 commit a53e8dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ltk/ltk.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
if (headers) {
$.ajax({ url, type: "POST", data, dataType, headers }).done(success).fail(error)
} else {
$.post(url, payload, success, dataType).fail(error)
$.post(url, data, success, dataType).fail(error)
}
}

Expand Down

0 comments on commit a53e8dc

Please sign in to comment.