@@ -24,17 +24,13 @@ $(".next").click(function(){
}
dataOBJ = {"name":name_title,"text_content":txtARR,"image_urls":imgARR}
console.log(txtARR);
- console.log(imgARR);
-
+ console.log(dataOBJ);
+
$.ajax({
url: 'http://www.choozmo.com:8888/make_anchor_video_v2',
type: 'post',
dataType: 'json',
- data: JSON.stringify({
- title: name_title,
- text_content: txtARR,
- image_urls: imgARR
- }),
+ data: dataOBJ,
success: function(data) {
showThankyou();
},