Add cross domain origin sending support

This commit is contained in:
Marcus Whybrow 2012-11-16 02:21:33 +00:00
parent ba78683ea1
commit 06dded9474

View File

@ -86,6 +86,9 @@ $(function() {
url: url + "&page=" + page,
dataType: 'json',
async: false,
xhrFields: {
withCredentials: true,
},
success: function(data) {
if (data.length == 100) {
output = getAllPages(url, output.concat(data), page + 1);