From e153d6e63b980ebc49452e2ed7d8890d9e0e456e Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Wed, 3 Aug 2016 10:26:29 -0400 Subject: [PATCH] commenting out the ajax request until it can be implemented properly --- js/app.js | 18 +++++++++--------- js/custom/pageSetup.js | 18 +++++++++--------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/js/app.js b/js/app.js index fe654b8..aeaa0cd 100644 --- a/js/app.js +++ b/js/app.js @@ -200,13 +200,13 @@ $(document).ready(function () { var url = "https://api.hubapi.com/content/api/v2/blogs?hapikey=demo"; - $.ajax({ - url: url, - dataType: 'JSONP', - jsonpCallback: 'callback', - type: 'GET', - success: function (data) { - console.log(data); - } - }); +// $.ajax({ +// url: url, +// dataType: 'JSONP', +// jsonpCallback: 'callback', +// type: 'GET', +// success: function (data) { +// console.log(data); +// } +// }); }); diff --git a/js/custom/pageSetup.js b/js/custom/pageSetup.js index 34164e3..a122c27 100644 --- a/js/custom/pageSetup.js +++ b/js/custom/pageSetup.js @@ -191,13 +191,13 @@ $(document).ready(function () { var url = "https://api.hubapi.com/content/api/v2/blogs?hapikey=demo"; - $.ajax({ - url: url, - dataType: 'JSONP', - jsonpCallback: 'callback', - type: 'GET', - success: function (data) { - console.log(data); - } - }); +// $.ajax({ +// url: url, +// dataType: 'JSONP', +// jsonpCallback: 'callback', +// type: 'GET', +// success: function (data) { +// console.log(data); +// } +// }); }); -- 2.17.1