e1c974c1 by Jeff Balicki

fix for ie

1 parent aa844534
...@@ -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 = [];
......