fix for ie
Showing
1 changed file
with
6 additions
and
2 deletions
| ... | @@ -626,8 +626,12 @@ function returnOptions(form, preview) { | ... | @@ -626,8 +626,12 @@ function returnOptions(form, preview) { |
| 626 | 626 | ||
| 627 | $.ajax({ | 627 | $.ajax({ |
| 628 | url: "" +pdf_customizer + "/api/v1/get-pdf/" + id.value, | 628 | url: "" +pdf_customizer + "/api/v1/get-pdf/" + id.value, |
| 629 | cache: false, | 629 | type: "POST", |
| 630 | dataType: "json", | 630 | dataType: 'json', |
| 631 | data: jsonReturn, | ||
| 632 | contentType: "application/json", | ||
| 633 | CrossDomain: true, | ||
| 634 | |||
| 631 | success: function(dataReturnd) { | 635 | success: function(dataReturnd) { |
| 632 | 636 | ||
| 633 | var content = []; | 637 | var content = []; | ... | ... |
-
Please register or sign in to post a comment