aa844534 by Jeff Balicki

fix for ie

1 parent b9b8bcdd
...@@ -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 });
......