We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9fe7b9 commit f5cceb8Copy full SHA for f5cceb8
dist/js/datatables-factory.js
@@ -2654,7 +2654,8 @@ Loader.class_methods = {
2654
return $.ajax({
2655
url: url,
2656
type: 'POST',
2657
- data: data,
+ data: JSON.stringify(data),
2658
+ contentType: 'application/json',
2659
statusCode: {
2660
422: function _() {
2661
alert("Votre session a expiré, veuillez vous reconnecter.");
src/modules/loader.coffee
@@ -15,7 +15,8 @@ Loader.class_methods =
15
$.ajax
16
url: url
17
type: 'POST'
18
- data: data
+ data: JSON.stringify(data)
19
+ contentType: 'application/json'
20
statusCode:
21
422: ->
22
alert "Votre session a expiré, veuillez vous reconnecter."
0 commit comments