fix for ie
Showing
1 changed file
with
8 additions
and
2 deletions
| ... | @@ -622,7 +622,13 @@ function returnOptions(form, preview) { | ... | @@ -622,7 +622,13 @@ function returnOptions(form, preview) { |
| 622 | 622 | ||
| 623 | 623 | ||
| 624 | 624 | ||
| 625 | $.getJSON(pdf_customizer + "/api/v1/get-pdf/" + id.value, function(dataReturnd) { | 625 | |
| 626 | |||
| 627 | $.ajax({ | ||
| 628 | url: "" +pdf_customizer + "/api/v1/get-pdf/" + id.value, | ||
| 629 | cache: false, | ||
| 630 | dataType: "json", | ||
| 631 | success: function(dataReturnd) { | ||
| 626 | 632 | ||
| 627 | var content = []; | 633 | var content = []; |
| 628 | 634 | ||
| ... | @@ -696,7 +702,7 @@ function returnOptions(form, preview) { | ... | @@ -696,7 +702,7 @@ function returnOptions(form, preview) { |
| 696 | 702 | ||
| 697 | 703 | ||
| 698 | }); | 704 | }); |
| 699 | 705 | } | |
| 700 | 706 | ||
| 701 | }); | 707 | }); |
| 702 | }); | 708 | }); | ... | ... |
-
Please register or sign in to post a comment